Committed by
Gerrit Code Review
Tighten visibility of constant
Change-Id: I05a54e4389d08499b21109868adec18ddbe2bb8d
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -82,8 +82,8 @@ public class IntentManager | ... | @@ -82,8 +82,8 @@ public class IntentManager |
82 | 82 | ||
83 | private static final Logger log = getLogger(IntentManager.class); | 83 | private static final Logger log = getLogger(IntentManager.class); |
84 | 84 | ||
85 | - public static final String INTENT_NULL = "Intent cannot be null"; | 85 | + private static final String INTENT_NULL = "Intent cannot be null"; |
86 | - public static final String INTENT_ID_NULL = "Intent key cannot be null"; | 86 | + private static final String INTENT_ID_NULL = "Intent key cannot be null"; |
87 | 87 | ||
88 | private static final EnumSet<IntentState> RECOMPILE | 88 | private static final EnumSet<IntentState> RECOMPILE |
89 | = EnumSet.of(INSTALL_REQ, FAILED, WITHDRAW_REQ); | 89 | = EnumSet.of(INSTALL_REQ, FAILED, WITHDRAW_REQ); | ... | ... |
-
Please register or login to post a comment