Skip to content

Commit 6e381fa

Browse files
committed
Fix style
1 parent 41f0760 commit 6e381fa

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/nodes/call/special/LookupSpecialMethodSlotNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
* handle as well.
5656
*/
5757
public abstract class LookupSpecialMethodSlotNode extends LookupSpecialBaseNode {
58-
protected static abstract class CachedLookup extends LookupSpecialMethodSlotNode {
58+
protected abstract static class CachedLookup extends LookupSpecialMethodSlotNode {
5959
protected final SpecialMethodSlot slot;
6060

6161
public CachedLookup(SpecialMethodSlot slot) {
@@ -74,7 +74,7 @@ public static LookupSpecialMethodSlotNode create(SpecialMethodSlot slot) {
7474
return LookupSpecialMethodSlotNodeFactory.CachedLookupNodeGen.create(slot);
7575
}
7676

77-
private final static class UncachedLookup extends LookupSpecialMethodSlotNode {
77+
private static final class UncachedLookup extends LookupSpecialMethodSlotNode {
7878
protected final LookupCallableSlotInMRONode lookup;
7979

8080
public UncachedLookup(SpecialMethodSlot slot) {

0 commit comments

Comments
 (0)