James Moger
2014-04-14 a7af195bed674c2f0f1a74b69cefc8be1d90572d
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) {