GP-7113 Corrected missing bug fix

This commit is contained in:
ghidra1
2026-08-04 18:47:45 -04:00
parent 36cf4956db
commit c09c056438
2 changed files with 2 additions and 3 deletions

View File

@@ -375,7 +375,6 @@ public class LocalManagedBufferFile extends LocalBufferFile implements ManagedBu
super.setReadOnly();
if (openForUpdate) {
openForUpdate = false;
bfMgr.versionCreated(version, comment, checkinId);
startPreSave();
}

View File

@@ -250,7 +250,7 @@ public abstract class LocalFolderItem implements FolderItem {
throw new FileInUseException("Another checkin is in progress" + byMsg);
}
checkinId = checkoutId;
//Log.put("Check-in started: " + checkinId);
//log.info("Check-in started: " + checkinId);
}
}
@@ -262,7 +262,7 @@ public abstract class LocalFolderItem implements FolderItem {
synchronized (fileSystem) {
if (this.checkinId == itemCheckinId) {
this.checkinId = DEFAULT_CHECKOUT_ID;
//Log.put("Check-in ended: " + checkinId);
//log.info("Check-in ended: " + itemCheckinId);
}
}
}