James Moger
2014-04-15 a0d5c865f8e7161f73d5e4420e662e81f1640acd
src/main/java/com/gitblit/utils/StringUtils.java
@@ -307,7 +307,7 @@
    * @param bytes
    * @return byte array as hex string
    */
   private static String toHex(byte[] bytes) {
   public static String toHex(byte[] bytes) {
      StringBuilder sb = new StringBuilder(bytes.length * 2);
      for (int i = 0; i < bytes.length; i++) {
         if ((bytes[i] & 0xff) < 0x10) {