Skip to content

Commit

Permalink
TEIID-5998 correcting the class name
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Jul 23, 2020
1 parent 4e7ef32 commit 9687fe5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ public FileStore createFileStore(String name) {

FileStore delegate = this.storageManager.createFileStore(name);

ConstraintedFileStore wrapper = new ConstraintedFileStore(delegate, this);
ConstrainedFileStore wrapper = new ConstrainedFileStore(delegate, this);

wrapper.setMaxLength(this.maxFileStoreLength);
CommandContext cc = CommandContext.getThreadLocalContext();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* It removes the implementation for several methods that aren't needed above the
* buffer manager and removes any synchronization.
*/
class ConstraintedFileStore extends FileStore {
class ConstrainedFileStore extends FileStore {

private static final int SESSION_KILLING_RETRIES = 3;

Expand All @@ -39,7 +39,7 @@ class ConstraintedFileStore extends FileStore {
private long maxLength = Long.MAX_VALUE;
private SessionKiller killer;

ConstraintedFileStore(FileStore delegate, SessionKiller killer) {
ConstrainedFileStore(FileStore delegate, SessionKiller killer) {
this.delegate = delegate;
this.killer = killer;
}
Expand Down

0 comments on commit 9687fe5

Please sign in to comment.