Skip to content

Commit

Permalink
refactor!: make HEX_ARRAY private in Util.java (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat authored Jul 1, 2024
1 parent 72e831f commit e1f5969
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/stellar/sdk/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
* <p>note: For some reason we need to make it public, but I don't recommend to use it directly.
*/
public class Util {
// TODO: make HEX_ARRAY private
public static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray();
private static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray();

/**
* Returns hex representation of <code>bytes</code> array.
Expand Down

0 comments on commit e1f5969

Please sign in to comment.