We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c3ced commit b19d81fCopy full SHA for b19d81f
driver-core/src/main/java/com/datastax/driver/core/utils/Bytes.java
@@ -129,7 +129,7 @@ public static String toHexString(byte[] byteArray) {
129
* blob string.
130
*/
131
public static ByteBuffer fromHexString(String str) {
132
- if (str.length() & 1 == 1)
+ if ((str.length() & 1) == 1)
133
throw new IllegalArgumentException("A CQL blob string must have an even length (since one byte is always 2 hexadecimal character)");
134
135
if (str.charAt(0) != '0' || str.charAt(1) != 'x')
0 commit comments