Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Log number of restrictions
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Jun 24, 2014
1 parent 0b21f27 commit 1961d7d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/biz/bokhorst/xprivacy/PrivacyManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public class PrivacyManager {
static {
List<String> listRestriction = getRestrictions();

for (Hook hook : Meta.get()) {
List<Hook> listHook = Meta.get();
for (Hook hook : listHook) {
String restrictionName = hook.getRestrictionName();

// Check restriction
Expand Down Expand Up @@ -179,6 +180,7 @@ public class PrivacyManager {
mPermission.get(aPermission).add(hook);
}
}
Util.log(null, Log.WARN, listHook.size() + " restrictions");
}

public static List<String> getRestrictions() {
Expand Down

0 comments on commit 1961d7d

Please sign in to comment.