Skip to content

Commit 002387b

Browse files
committed
Fix style.
1 parent 6f0f71d commit 002387b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ protected static boolean isCachedNative(@SuppressWarnings("unused") PythonNative
188188

189189
@Specialization(replaces = "isCachedNative")
190190
protected static boolean isNative(PythonNativeWrapper wrapper,
191-
@Cached ConditionProfile hasNativePointerProfile) {
191+
@Cached ConditionProfile hasNativePointerProfile) {
192192
if (hasNativePointerProfile.profile(wrapper.nativePointer != null)) {
193193
Assumption handleValidAssumption = wrapper.getHandleValidAssumption();
194194
// If an assumption exists, it must be valid

0 commit comments

Comments
 (0)