Comment out unused code block

This commit is contained in:
Christoph Atteneder 2018-10-25 10:50:26 +02:00
parent 45060575bd
commit d0ed219484
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B

View File

@ -32,6 +32,9 @@ public class BankUtil {
@SuppressWarnings("SameReturnValue")
public static boolean isBankNameRequired(String countryCode) {
switch (countryCode) {
// We show always the bank name as it is needed in specific banks.
// Though that handling should be optimized in futures.
/*
case "GB":
case "US":
case "NZ":
@ -39,14 +42,12 @@ public class BankUtil {
case "CA":
case "SE":
case "HK":
// We show always the bank name as it is needed in specific banks.
// Though that handling should be optimized in futures.
return true;
// return false;
return false;
case "MX":
case "BR":
case "AR":
return true;
*/
default:
return true;
}