Skip to content

Commit

Permalink
removed exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitdas13 committed Aug 14, 2022
1 parent 8dacb71 commit 5fb4684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/razorpay/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private static boolean isEqual(byte[] a, byte[] b) {
}
return result == 0;
}
private static String getHexString(byte[] b) throws Exception {
private static String getHexString(byte[] b) {
String result = "";
for (int i=0; i < b.length; i++) {
result +=
Expand Down

0 comments on commit 5fb4684

Please sign in to comment.