Skip to content

Commit 7e308c7

Browse files
committed
fix style
1 parent f6b528c commit 7e308c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void setDict(PHashingCollection value) throws UnsupportedMessageException
154154

155155
@ExportMessage
156156
@GenerateUncached
157-
public static abstract class GetDict {
157+
public abstract static class GetDict {
158158
@Specialization
159159
public static PHashingCollection getNativeDictionary(PythonAbstractNativeObject self,
160160
@Cached PRaiseNode raiseNode,
@@ -182,7 +182,7 @@ public static PHashingCollection getNativeDictionary(PythonAbstractNativeObject
182182
@ExportMessage
183183
@GenerateUncached
184184
@SuppressWarnings("unused")
185-
public static abstract class GetLazyPythonClass {
185+
public abstract static class GetLazyPythonClass {
186186
public static Assumption getSingleContextAssumption() {
187187
return PythonLanguage.getCurrent().singleContextAssumption;
188188
}

0 commit comments

Comments
 (0)