Skip to content

Commit

Permalink
Remove redundant split
Browse files Browse the repository at this point in the history
  • Loading branch information
dilanSachi committed Dec 5, 2023
1 parent db27f57 commit 6e27d5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ public void notifyFailure(BError bError) {
if (splitValues.length != 2) {
return null;
}
String jwtValue = authHeader.split(WHITESPACE)[1];
String jwtValue = splitValues[1];
runtime.invokeMethodAsyncSequentially(
ValueCreator.createObjectValue(ModuleUtils.getHttpPackage(), JWT_DECODER_CLASS_NAME),
JWT_DECODE_METHOD_NAME,
Expand Down

0 comments on commit 6e27d5f

Please sign in to comment.