diff options
author | Wale Ogunwale <ogunwale@google.com> | 2015-10-27 14:21:58 -0700 |
---|---|---|
committer | Wale Ogunwale <ogunwale@google.com> | 2015-11-02 11:32:42 -0800 |
commit | 3797c22ea16e932329ebffdc7e7ce09f9ecd9545 (patch) | |
tree | a5a4b09cb4c6dc8d8d4cc6e624ffb200856eab95 /cmds/am/src | |
parent | c11f46f41662feebbbd2184aaef25c14add45e7d (diff) |
Added StackId object for checking what features a stack supports
Helps make the code easier to follow since we are no longer checking
multiple stack ids at various decision points.
Bug: 25282299
Change-Id: Ifa6864a1ef56ce2eca4c94f87a4e0b993de987cd
Diffstat (limited to 'cmds/am/src')
-rw-r--r-- | cmds/am/src/com/android/commands/am/Am.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/am/src/com/android/commands/am/Am.java b/cmds/am/src/com/android/commands/am/Am.java index 12780a8742b9..7f33cb5df1a3 100644 --- a/cmds/am/src/com/android/commands/am/Am.java +++ b/cmds/am/src/com/android/commands/am/Am.java @@ -18,7 +18,7 @@ package com.android.commands.am; -import static android.app.ActivityManager.DOCKED_STACK_ID; +import static android.app.ActivityManager.StackId.DOCKED_STACK_ID; import static android.app.ActivityManager.RESIZE_MODE_SYSTEM; import static android.app.ActivityManager.RESIZE_MODE_USER; |