James Moger
2011-10-06 466413cc4c3f6dca55359eb620fd1e1cd2d3f47b
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();