WalletApplication: remove unreachable default case in suffixFromNetwork()

This commit is contained in:
Sean Gilligan 2023-09-06 15:28:17 -07:00 committed by Andreas Schildbach
parent b5d3c07612
commit b83c0b96e6

View File

@ -193,7 +193,6 @@ public abstract class WalletApplication implements AppDelegate {
case TESTNET -> "test";
case SIGNET -> "signet";
case REGTEST -> "regtest";
default -> throw new IllegalArgumentException("Unsupported network");
};
}
}