James Moger
2011-12-16 9be337b389f9edb4c5761fca2c34104ca43c5b08
src/com/gitblit/utils/FileUtils.java
@@ -69,7 +69,7 @@
   public static void writeContent(File file, String content) {
      try {
         OutputStreamWriter os = new OutputStreamWriter(new FileOutputStream(file),
               Charset.forName("UTF-8"));
               Charset.forName("UTF-8"));
         BufferedWriter writer = new BufferedWriter(os);
         writer.append(content);
         writer.close();