Merge "Only print out wake locks in the if the wakelock was held." into gingerbread

This commit is contained in:
Jason Parks
2010-07-20 14:01:39 -07:00
committed by Android (Google) Code Review

View File

@@ -1237,10 +1237,9 @@ public abstract class BatteryStats implements Parcelable {
linePrefix);
if (!linePrefix.equals(": ")) {
sb.append(" realtime");
} else {
sb.append(": (nothing executed)");
// Only print out wake locks that were held
pw.println(sb.toString());
}
pw.println(sb.toString());
}
}
}
@@ -1453,11 +1452,10 @@ public abstract class BatteryStats implements Parcelable {
"window", which, linePrefix);
if (!linePrefix.equals(": ")) {
sb.append(" realtime");
} else {
sb.append(": (nothing executed)");
// Only print out wake locks that were held
pw.println(sb.toString());
uidActivity = true;
}
pw.println(sb.toString());
uidActivity = true;
}
}