Skip to content

Commit 0a4b84e

Browse files
committed
style fixes
1 parent 03c826e commit 0a4b84e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/module/MemoryviewTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python.test/src/tests/cpyext/demo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/DynamicObjectNativeWrapper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,8 @@ public void setMaterializedObject(Object materializedPrimitive) {
12621262

12631263
@Override
12641264
public boolean equals(Object obj) {
1265-
return obj instanceof PrimitiveNativeWrapper && ((PrimitiveNativeWrapper)obj).state == state && ((PrimitiveNativeWrapper)obj).value == value && ((PrimitiveNativeWrapper)obj).dvalue == dvalue;
1265+
return obj instanceof PrimitiveNativeWrapper && ((PrimitiveNativeWrapper) obj).state == state && ((PrimitiveNativeWrapper) obj).value == value &&
1266+
((PrimitiveNativeWrapper) obj).dvalue == dvalue;
12661267
}
12671268

12681269
@Override

0 commit comments

Comments
 (0)