]> source.dussan.org Git - jgit.git/commitdiff
DirCache: Use constant from StandardCharsets 96/120996/2
authorDavid Pursehouse <david.pursehouse@gmail.com>
Wed, 11 Apr 2018 12:31:07 +0000 (21:31 +0900)
committerDavid Pursehouse <david.pursehouse@gmail.com>
Thu, 12 Apr 2018 01:09:51 +0000 (10:09 +0900)
Instead of hard-coding the encoding name, use the constant from
StandardCharsets. As a result it is no longer necessary to catch
the UnsupportedEncodingException.

Change-Id: I3cb6de921a78e05e2a894c220e0d5a5c85e172cc
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java

index 84bb340d2462bc437cffc99c2dc7675864927329..d7f975b003f26184e6de2804ded9b78808f484f5 100644 (file)
@@ -45,6 +45,8 @@
 
 package org.eclipse.jgit.dircache;
 
+import static java.nio.charset.StandardCharsets.ISO_8859_1;
+
 import java.io.BufferedInputStream;
 import java.io.BufferedOutputStream;
 import java.io.EOFException;
@@ -53,7 +55,6 @@ import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
-import java.io.UnsupportedEncodingException;
 import java.security.DigestOutputStream;
 import java.security.MessageDigest;
 import java.text.MessageFormat;
@@ -580,9 +581,8 @@ public class DirCache {
                }
        }
 
-       private static String formatExtensionName(final byte[] hdr)
-                       throws UnsupportedEncodingException {
-               return "'" + new String(hdr, 0, 4, "ISO-8859-1") + "'"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+       private static String formatExtensionName(final byte[] hdr) {
+               return "'" + new String(hdr, 0, 4, ISO_8859_1) + "'"; //$NON-NLS-1$ //$NON-NLS-2$
        }
 
        private static boolean is_DIRC(final byte[] hdr) {