James Moger
2011-12-28 7f14da3aceae2db516a7bec2c2e00d48049ec7b5
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();