diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2016-12-30 01:19:58 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2016-12-30 01:19:58 +0100 |
commit | 5dc30db56e2542ccd1365b069c66c0177a8185ee (patch) | |
tree | 0612526c572a09863a294a08ebbd2d53c2a23c34 /org.eclipse.jgit | |
parent | 29ddbf7fcd48f167e4a02b6ee61e9f8697a7175c (diff) | |
download | jgit-5dc30db56e2542ccd1365b069c66c0177a8185ee.tar.gz jgit-5dc30db56e2542ccd1365b069c66c0177a8185ee.zip |
[findBugs] PackWriter.NONE should be final
Change-Id: I4b5621bcb4db82e0560408b3cde6f18b0cc55b29
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriter.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriter.java index 8b4d2e6d35..a5764be4d7 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriter.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriter.java @@ -164,7 +164,7 @@ public class PackWriter implements AutoCloseable { private static final int PACK_VERSION_GENERATED = 2; /** Empty set of objects for {@code preparePack()}. */ - public static Set<ObjectId> NONE = Collections.emptySet(); + public static final Set<ObjectId> NONE = Collections.emptySet(); private static final Map<WeakReference<PackWriter>, Boolean> instances = new ConcurrentHashMap<WeakReference<PackWriter>, Boolean>(); |