Skip to content

Commit 60dc066

Browse files
committed
Fix style
1 parent 7820dcc commit 60dc066

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SysConfigModuleBuiltins.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ protected List<? extends NodeFactory<? extends PythonBuiltinBaseNode>> getNodeFa
8686
@GenerateNodeFactory
8787
abstract static class GetConfigVarsNode extends PythonBuiltinNode {
8888
@Specialization
89+
@SuppressWarnings("unchecked")
8990
PDict select(PythonModule self,
90-
@SuppressWarnings("unused") Object[] arguments,
91-
@Cached("create()") ReadAttributeFromObjectNode readNode) {
92-
@SuppressWarnings("unchecked")
91+
@SuppressWarnings("unused") Object[] arguments,
92+
@Cached("create()") ReadAttributeFromObjectNode readNode) {
9393
EconomicMap<String, Object> configOptions = (EconomicMap<String, Object>) readNode.execute(self, CONFIG_OPTIONS);
9494
return factory().createDict(configOptions);
9595
}

0 commit comments

Comments
 (0)