Skip to content

Commit

Permalink
God.. I hate checkstyle :)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriymyronovych committed Jun 8, 2018
1 parent 1c940da commit 8480736
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/src/main/java/org/web3j/utils/Numeric.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public static String prependHexPrefix(String input) {
}

public static boolean containsHexPrefix(String input) {
return !Strings.isEmpty(input) && input.length() > 1 &&
input.charAt(0) == '0' && input.charAt(1) == 'x';
return !Strings.isEmpty(input) && input.length() > 1
&& input.charAt(0) == '0' && input.charAt(1) == 'x';
}

public static BigInteger toBigInt(byte[] value, int offset, int length) {
Expand Down

0 comments on commit 8480736

Please sign in to comment.