Frameworks/base: Fix braino missing line

This got accidentally deleted in cleanup.

Bug: 29223204
Change-Id: I018b44d517f226eca30f141a3397c82a4be19afb
This commit is contained in:
Andreas Gampe
2016-07-15 18:12:02 -07:00
parent 8af870a778
commit 06eb24d95e

View File

@@ -265,6 +265,7 @@ class CompilerStats extends AbstractStatsBase<Void> {
try {
f = file.startWrite();
OutputStreamWriter osw = new OutputStreamWriter(f);
write(osw);
osw.flush();
file.finishWrite(f);
} catch (IOException e) {