Skip to content

Commit eb2c72d

Browse files
committed
Fix warning
1 parent c084844 commit eb2c72d

File tree

1 file changed

+2
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/thread

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/thread/ThreadLocalNodes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ PDict get(VirtualFrame frame, PThreadLocal self,
7272
}
7373

7474
@TruffleBoundary
75-
private PDict getStorage(PThreadLocal self) {
75+
private static PDict getStorage(PThreadLocal self) {
7676
return self.getThreadLocalDict().get();
7777
}
7878

7979
@TruffleBoundary
80-
private void setStorage(PThreadLocal self, PDict storage) {
80+
private static void setStorage(PThreadLocal self, PDict storage) {
8181
self.getThreadLocalDict().set(storage);
8282
}
8383
}

0 commit comments

Comments
 (0)