Skip to content

Commit 9f4de87

Browse files
committed
fix style
1 parent cea3f2f commit 9f4de87

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type/TypeNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ public Object[] toArray() {
446446

447447
@SuppressWarnings("unchecked")
448448
public <T> T[] toArray(T[] a) {
449-
if (a.getClass() == Object[].class) {
449+
if (a.getClass() == Object[].class) {
450450
return (T[]) toArray();
451451
} else {
452452
throw new UnsupportedOperationException();

0 commit comments

Comments
 (0)