Skip to content

Commit

Permalink
Correction to variable based on review comment
Browse files Browse the repository at this point in the history
Signed-off-by: Loganathan Sekar <[email protected]>
  • Loading branch information
Loganathan Sekar committed Oct 17, 2023
1 parent 182ff32 commit e72135a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ private void appendString(BIR bir, StringBuilder stringBuilder) {
}
}

private static String getHashOfBytes(byte[] ba) {
return ba == null ? "null" : "\""+ DigestUtils.sha256Hex(ba) + "\"";
private static String getHashOfBytes(byte[] byteArray) {
return byteArray == null ? "null" : "\""+ DigestUtils.sha256Hex(byteArray) + "\"";
}

public String toString(ExtractTemplateRequestDto extractTemplateRequestDto) {
Expand Down

0 comments on commit e72135a

Please sign in to comment.