Fix debug command creating empty file (MC-103399) (#3218)

This commit is contained in:
Paul Fulham 2016-09-13 00:31:43 -07:00 committed by LexManos
parent bf6437c12a
commit cac55abec2
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- ../src-base/minecraft/net/minecraft/command/CommandDebug.java
+++ ../src-work/minecraft/net/minecraft/command/CommandDebug.java
@@ -99,7 +99,7 @@
{
IOUtils.closeQuietly((Writer)filewriter);
field_147208_a.error("Could not save profiler results to {}", new Object[] {file1, throwable});
- }
+ } finally { IOUtils.closeQuietly(filewriter); } // FORGE: Fix MC-103399
}
private String func_184893_b(long p_184893_1_, int p_184893_3_, MinecraftServer p_184893_4_)