diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2020-02-22 23:29:14 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2020-02-22 23:36:08 +0100 |
commit | 25a6bd4d614589c968090fb506fc9b26d5c82fe2 (patch) | |
tree | d7db995f01073c7fef81d0dfe79129d92b13b398 /org.eclipse.jgit/src/org/eclipse/jgit/nls | |
parent | 67b9effc655d8ba75acb7db5e49687224d1c7a6a (diff) | |
parent | abb461533fccfd59117c3415cf9c0ed06e460473 (diff) | |
download | jgit-25a6bd4d614589c968090fb506fc9b26d5c82fe2.tar.gz jgit-25a6bd4d614589c968090fb506fc9b26d5c82fe2.zip |
Merge branch 'stable-5.6'
* stable-5.6:
Revert "Prepend hostname to subsection used to store file timestamp resolution"
SimilarityRenameDetector: Fix inconsistent indentation
Use indexOf(char) and lastIndexOf(char) rather than String versions
Reorder modifiers to follow Java Language Specification
GitmoduleEntry: Remove redundant import of class from same package
Remove redundant "static" qualifier from enum declarations
Change-Id: Ibb66bef7e8373f81e3e653c9843d986243446d68
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/nls')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/nls/NLS.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/nls/NLS.java b/org.eclipse.jgit/src/org/eclipse/jgit/nls/NLS.java index 2cb1a5301b..daa039d347 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/nls/NLS.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/nls/NLS.java @@ -100,8 +100,8 @@ public class NLS { return b.get(type); } - final private Locale locale; - final private ConcurrentHashMap<Class, TranslationBundle> map = new ConcurrentHashMap<>(); + private final Locale locale; + private final ConcurrentHashMap<Class, TranslationBundle> map = new ConcurrentHashMap<>(); private NLS(Locale locale) { this.locale = locale; |