James Moger
2011-09-22 9b72a2e674f7cbc320b0b72fc71ad813d296ab12
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();