Merge "StateMachine: reset LogRecords.mOldestIndex in LogRecords.setSize" into nyc-dev

am: e749cd3

* commit 'e749cd3b15bb14e6dc4ff2724ec1ed56ba269b4c':
  StateMachine: reset LogRecords.mOldestIndex in LogRecords.setSize

Change-Id: I994e596e3d85daf89ac1ebb81a1856e57c22f2bc
This commit is contained in:
Samuel Tan
2016-04-19 17:35:11 +00:00
committed by android-build-merger

View File

@@ -593,7 +593,11 @@ public class StateMachine {
* @param maxSize number of records to maintain at anyone time.
*/
synchronized void setSize(int maxSize) {
// TODO: once b/28217358 is fixed, add unit tests to verify that these variables are
// cleared after calling this method, and that subsequent calls to get() function as
// expected.
mMaxSize = maxSize;
mOldestIndex = 0;
mCount = 0;
mLogRecVector.clear();
}