summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/utils/FileUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/gitblit/utils/FileUtils.java')
-rw-r--r--src/com/gitblit/utils/FileUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/gitblit/utils/FileUtils.java b/src/com/gitblit/utils/FileUtils.java
index 6644d83c..73bef34f 100644
--- a/src/com/gitblit/utils/FileUtils.java
+++ b/src/com/gitblit/utils/FileUtils.java
@@ -69,7 +69,7 @@ public class FileUtils {
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();