Remove redundant constructor call

This commit is contained in:
Daniel Martí 2015-06-15 01:38:43 +02:00
parent 3aa8bf4ea0
commit 4084cd5260

View File

@ -322,7 +322,6 @@ public class AppSecurityPermissions {
if (group == null) { if (group == null) {
group = new MyPermissionGroupInfo(tmpPermInfo); group = new MyPermissionGroupInfo(tmpPermInfo);
} }
group = new MyPermissionGroupInfo(tmpPermInfo);
} }
mPermGroups.put(tmpPermInfo.group, group); mPermGroups.put(tmpPermInfo.group, group);
} }