Skip to content

Commit e583b7b

Browse files
committed
Sonarqube: Make this "public static INSTANCE" field final
1 parent defc96d commit e583b7b

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common/HashingStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public abstract class HashingStorage {
6464
public static class UnmodifiableStorageException extends ControlFlowException {
6565
private static final long serialVersionUID = 9102544480293222401L;
6666

67-
public static UnmodifiableStorageException INSTANCE = new UnmodifiableStorageException();
67+
protected static final UnmodifiableStorageException INSTANCE = new UnmodifiableStorageException();
6868
}
6969

7070
@ValueType

0 commit comments

Comments
 (0)