Skip to content

Commit

Permalink
whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hg-ms committed Oct 2, 2024
1 parent 43d70c8 commit b24183e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ private void fillReadBufferFromFile()
this.lockFile.readBytes(this.ensureReadingBuffer(fileLength), 0, fileLength);
XMemory.copyRangeToArray(XMemory.getDirectByteBufferAddress(this.directByteBuffer), this.stringReadBuffer);
}

private LockFileData readLockFileData()
{
final String currentFileData = this.readString();
Expand Down Expand Up @@ -460,8 +460,8 @@ private boolean lockFileHasContent()
{
return this.lockFile.exists() && this.lockFile.size() > 0;
}


private void checkForModifiedLockFile()
{
if(this.isReadOnlyMode() && !this.lockFileHasContent())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@ public final class Default implements StorageSystem, Unpersistable, StorageKilla
private Thread backupThread ;

private StorageLockFileManager lockFileManager;
//private Thread lockFileManagerThread;
//private ScheduledExecutorService lockFileManagerExecutor;

private StorageIdAnalysis initializationIdAnalysis;

Expand Down Expand Up @@ -417,7 +415,6 @@ private void stopLockFileManagerThread()
this.lockFileManager.stop();
}


// "Please do not disturb the Keepers" :-D
static final class ChannelKeeper implements StorageActivePart
{
Expand Down

0 comments on commit b24183e

Please sign in to comment.