Fix VisibleForTesting annotation in AppStateAppOpsBridge

Should be PRIVATE (the default) and not NONE since it's called from the
regular constructor for the object.

Bug: Clean-up
Test: Compiles
Change-Id: I9eb8881ed03dcddd1b478e313f5a314b338fccd7
This commit is contained in:
Tony Mantler
2018-02-02 10:48:03 -08:00
parent 644bea8e0e
commit fb9e3afc84

View File

@@ -61,7 +61,7 @@ public abstract class AppStateAppOpsBridge extends AppStateBaseBridge {
new IPackageManagerWrapper(AppGlobals.getPackageManager()));
}
@VisibleForTesting(otherwise = VisibleForTesting.NONE)
@VisibleForTesting
AppStateAppOpsBridge(Context context, ApplicationsState appState, Callback callback,
int appOpsOpCode, String[] permissions, IPackageManagerWrapper packageManager) {
super(appState, callback);