Skip to content

Commit 4d885cf

Browse files
committed
style fix
1 parent 7948f84 commit 4d885cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/image/NativeImageHeap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,8 +934,8 @@ int getObjectReachabilityGroup() {
934934
return objectReachabilityGroup;
935935
}
936936

937-
boolean objectReachableFrom(ObjectReachabilityGroup objectReachabilityGroup) {
938-
return (this.objectReachabilityGroup & objectReachabilityGroup.flag) != 0;
937+
boolean objectReachableFrom(ObjectReachabilityGroup other) {
938+
return (this.objectReachabilityGroup & other.flag) != 0;
939939
}
940940
}
941941

0 commit comments

Comments
 (0)