Remove unnecessary breaks in string_jwt

Signed-off-by: Hans Kokx <hans.kokx@hackberry.se>
This commit is contained in:
Hans Kokx
2024-10-29 11:34:49 +01:00
parent 15f831f1dd
commit 469ff7a0b3
-2
View File
@@ -92,10 +92,8 @@ extension JWTUtility on String {
break;
case 2:
output += "==";
break;
case 3:
output += "=";
break;
default:
throw Exception('Illegal base64url string!"');
}