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; break;
case 2: case 2:
output += "=="; output += "==";
break;
case 3: case 3:
output += "="; output += "=";
break;
default: default:
throw Exception('Illegal base64url string!"'); throw Exception('Illegal base64url string!"');
} }