Skip to content

Commit 9cc9bcf

Browse files
committed
Make getBytes static.
1 parent d949f23 commit 9cc9bcf

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints/IntBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,7 @@ private byte getSingByte(BigInteger value, boolean signed) {
17591759
}
17601760

17611761
@TruffleBoundary
1762-
private byte[] getBytes(BigInteger value) {
1762+
private static byte[] getBytes(BigInteger value) {
17631763
return value.toByteArray();
17641764
}
17651765

0 commit comments

Comments
 (0)