Tighten visibility of constant

Change-Id: I05a54e4389d08499b21109868adec18ddbe2bb8d
This commit is contained in:
Sho SHIMIZU 2016-03-31 12:54:17 -07:00 committed by Gerrit Code Review
parent 4c211c9dbf
commit 17c09dabbf

View File

@ -82,8 +82,8 @@ public class IntentManager
private static final Logger log = getLogger(IntentManager.class);
public static final String INTENT_NULL = "Intent cannot be null";
public static final String INTENT_ID_NULL = "Intent key cannot be null";
private static final String INTENT_NULL = "Intent cannot be null";
private static final String INTENT_ID_NULL = "Intent key cannot be null";
private static final EnumSet<IntentState> RECOMPILE
= EnumSet.of(INSTALL_REQ, FAILED, WITHDRAW_REQ);