Skip to content

Commit

Permalink
fixed vertical spacing in the lock manager
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverLok committed May 29, 2024
1 parent bc2893e commit dcc20b9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions common/lockmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ func lock(key string, read bool) {
}

lock.lockCount++;
<<<<<<< HEAD
=======
>>>>>>> upstream/main

lock.timestamp = time.Now();
}

Expand All @@ -89,9 +87,7 @@ func unlock(key string, read bool) error {
}

lock.lockCount--;
<<<<<<< HEAD
=======
>>>>>>> upstream/main

lock.timestamp = time.Now();

return nil;
Expand Down

0 comments on commit dcc20b9

Please sign in to comment.