Number of DEBUG_STATES was 1 less than necessary

Change-Id: I0a9289f9bcf99df0d9a466ad3ff00996192921f2
This commit is contained in:
Tony 2019-03-14 18:03:55 -05:00
parent 44ba75fd0b
commit 40f1d863f6
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class WindowTransformSwipeHandler<T extends BaseDraggingActivity>
implements SwipeAnimationListener, OnApplyWindowInsetsListener {
private static final String TAG = WindowTransformSwipeHandler.class.getSimpleName();
private static final String[] STATE_NAMES = DEBUG_STATES ? new String[16] : null;
private static final String[] STATE_NAMES = DEBUG_STATES ? new String[17] : null;
private static int getFlagForIndex(int index, String name) {
if (DEBUG_STATES) {