Update AclUtils.java (#6689)

This commit is contained in:
maheshnikam
2023-05-05 15:08:17 +05:30
committed by GitHub
parent 57642bc630
commit d9223ffd78
@@ -144,16 +144,12 @@ public class AclUtils {
}
public static boolean isScope(String[] num, int index) {
if (num.length <= index) {
}
for (int i = 0; i < index; i++) {
if (!isScope(num[i])) {
return false;
}
}
return true;
}
public static boolean isColon(String netAddress) {