Committed by
Gerrit Code Review
add print msg when use -p flag
Change-Id: I7f5fc7ddcf1ada45bb4874e48b683cc028e53056
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -72,9 +72,9 @@ public class IntentRemoveCommand extends AbstractShellCommand { | ... | @@ -72,9 +72,9 @@ public class IntentRemoveCommand extends AbstractShellCommand { |
72 | IntentService intentService = get(IntentService.class); | 72 | IntentService intentService = get(IntentService.class); |
73 | CoreService coreService = get(CoreService.class); | 73 | CoreService coreService = get(CoreService.class); |
74 | 74 | ||
75 | - if (sync) { | 75 | + if (purgeAfterRemove || sync) { |
76 | - print("Use Sync to remove intents - this may take a while..."); | 76 | + print("Using \"sync\" to remove/purge intents - this may take a while..."); |
77 | - print("Check \"summary\" to see remove progress."); | 77 | + print("Check \"summary\" to see remove/purge progress."); |
78 | } | 78 | } |
79 | 79 | ||
80 | ApplicationId appId = appId(); | 80 | ApplicationId appId = appId(); | ... | ... |
-
Please register or login to post a comment