Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ashera96 committed Jul 25, 2023
1 parent cb72702 commit e4925cb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ public String buildHeader() throws JWTGeneratorException {
}
} catch (JSONException e) {
throw new JWTGeneratorException("Encountered an error while generating JWT header json object", e);
} return jwtHeader;
}
return jwtHeader;

Check warning on line 127 in components/apimgt/org.wso2.carbon.apimgt.common.gateway/src/main/java/org/wso2/carbon/apimgt/common/gateway/jwtgenerator/AbstractAPIMgtGatewayJWTGenerator.java

View check run for this annotation

Codecov / codecov/patch

components/apimgt/org.wso2.carbon.apimgt.common.gateway/src/main/java/org/wso2/carbon/apimgt/common/gateway/jwtgenerator/AbstractAPIMgtGatewayJWTGenerator.java#L124-L127

Added lines #L124 - L127 were not covered by tests
}

public byte[] signJWT(String assertion) throws JWTGeneratorException {
Expand Down

0 comments on commit e4925cb

Please sign in to comment.