|
|
|
@ -114,8 +114,6 @@ public class ObjectDirectory extends FileObjectDatabase {
|
|
|
|
|
/** Maximum number of candidates offered as resolutions of abbreviation. */ |
|
|
|
|
private static final int RESOLVE_ABBREV_LIMIT = 256; |
|
|
|
|
|
|
|
|
|
private static final String STALE_FILE_HANDLE_MSG = "stale file handle"; //$NON-NLS-1$
|
|
|
|
|
|
|
|
|
|
private final Config config; |
|
|
|
|
|
|
|
|
|
private final File objects; |
|
|
|
@ -565,8 +563,7 @@ public class ObjectDirectory extends FileObjectDatabase {
|
|
|
|
|
} else if (e instanceof FileNotFoundException) { |
|
|
|
|
warnTmpl = JGitText.get().packWasDeleted; |
|
|
|
|
removePack(p); |
|
|
|
|
} else if (e.getMessage() != null |
|
|
|
|
&& e.getMessage().toLowerCase().contains(STALE_FILE_HANDLE_MSG)) { |
|
|
|
|
} else if (FileUtils.isStaleFileHandle(e)) { |
|
|
|
|
warnTmpl = JGitText.get().packHandleIsStale; |
|
|
|
|
removePack(p); |
|
|
|
|
} |
|
|
|
|