James Moger
2011-11-11 c2fe08bb91494d3ce9dae60ed89f29bb0057bbf8
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();