James Moger
2014-04-15 bd7db1070e07cf1777a0c0ee6e770625f8734fb6
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) {