OSDN Git Service

Frameworks/base: Fix braino missing line
authorAndreas Gampe <agampe@google.com>
Sat, 16 Jul 2016 01:12:02 +0000 (18:12 -0700)
committerAndreas Gampe <agampe@google.com>
Sat, 16 Jul 2016 01:13:48 +0000 (18:13 -0700)
This got accidentally deleted in cleanup.

Bug: 29223204
Change-Id: I018b44d517f226eca30f141a3397c82a4be19afb

services/core/java/com/android/server/pm/CompilerStats.java

index 46efd98..8c2fc3e 100644 (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) {