Remove the GV2 "anyone" access level.

This commit is contained in:
Alan Evans
2020-08-04 14:12:27 -03:00
committed by Greyson Parrelli
parent 5f0d384c9e
commit fdf4ad9543
3 changed files with 0 additions and 3 deletions

View File

@@ -14,7 +14,6 @@ public final class GV2AccessLevelUtil {
public static String toString(@NonNull Context context, @NonNull AccessControl.AccessRequired attributeAccess) {
switch (attributeAccess) {
case ANY : return context.getString(R.string.GroupManagement_access_level_anyone);
case MEMBER : return context.getString(R.string.GroupManagement_access_level_all_members);
case ADMINISTRATOR : return context.getString(R.string.GroupManagement_access_level_only_admins);
default : return context.getString(R.string.GroupManagement_access_level_unknown);