RefDirectory: Add missing $NON-NLS suppression

Change-Id: I6afb4f86c3a8a06e5ea3128bf1b9b20c46ca158c
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2018-08-23 16:51:19 +09:00
parent 2fc00af44e
commit e1b971848a
1 changed files with 1 additions and 1 deletions

View File

@ -1288,7 +1288,7 @@ private static void delete(File file, int depth, LockFile rLck)
try {
Files.delete(dir.toPath());
} catch (IOException e) {
LOG.warn("Unable to remove path {}", dir, e);
LOG.warn("Unable to remove path {}", dir, e); //$NON-NLS-1$
break;
}
dir = dir.getParentFile();