Skip to content

Commit f240b78

Browse files
committed
HexFormat: make package private
1 parent a2afac3 commit f240b78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

secp-api/src/main/java/org/bitcoinj/secp/internal/HexFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* HexFormat.java in `bitcoinj-base/org.bitcoinj.base.internal`.
2323
* <p>Thanks to this <a href="https://www.baeldung.com/java-byte-arrays-hex-strings">Baeldung article</a>.
2424
*/
25-
public class HexFormat {
25+
class HexFormat {
2626
public String formatHex(byte[] bytes) {
2727
StringBuilder stringBuilder = new StringBuilder(bytes.length * 2);
2828
for (byte aByte : bytes) {

0 commit comments

Comments
 (0)