Mrbytes
2012-12-19 e56a821d5ec9a2606f44f72dd24b7bf2f00e714d
src/com/gitblit/utils/StringUtils.java
@@ -719,4 +719,18 @@
      Matcher m = p.matcher(input);
      return m.matches();
   }
   /**
    * Removes new line and carriage return chars from a string.
    * If input value is null an empty string is returned.
    *
    * @param input
    * @return a sanitized or empty string
    */
   public static String removeNewlines(String input) {
      if (input == null) {
         return "";
      }
      return input.replace('\n',' ').replace('\r',  ' ').trim();
   }
}