diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2017-11-22 21:34:37 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-11-22 21:34:37 +0100 |
commit | 182d3b3dadeb729ac3c5a7c1b653f30506f38d8e (patch) | |
tree | 9cea89882e62874359f68f65f69bd3873bc3b6b3 | |
parent | 3ac44f1b38d3a7628955b13abb1560340a041426 (diff) | |
download | jgit-182d3b3dadeb729ac3c5a7c1b653f30506f38d8e.tar.gz jgit-182d3b3dadeb729ac3c5a7c1b653f30506f38d8e.zip |
Silence boxing warning
Change-Id: I36c40eb91ce0c51f89b47911fa14beffcbc0a7cd
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java index 4ecaf9c8ee..f63c437e4e 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java @@ -99,6 +99,7 @@ public class FS_POSIX extends FS { } } + @SuppressWarnings("boxing") private void determineAtomicFileCreationSupport() { // @TODO: enhance SystemReader to support this without copying code Boolean ret = getAtomicFileCreationSupportOption( |