Removed BANK from checkBusCategory method

This commit is contained in:
Mikhail Trofimov 2025-06-27 10:16:49 +03:00
parent 4d08bf0d27
commit 6e5350b6ab

View file

@ -31,7 +31,7 @@ public class CTUtil {
public static boolean checkBusCategory(String busCategory) { public static boolean checkBusCategory(String busCategory) {
switch (busCategory) { switch (busCategory) {
case "MFO", "MKK", "MFK", "BANK" -> { // TODO remove bank after testing case "MFO", "MKK", "MFK" -> {
return true; return true;
} }
default -> { default -> {