Skip to content

Commit f0339c0

Browse files
committed
Style and removing debug message.
1 parent ec81697 commit f0339c0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,6 @@ Object listdir(VirtualFrame frame, String path) {
600600
throw raiseOSError(frame, OSErrorEnum.ENOENT, path);
601601
} catch (SecurityException | IOException e) {
602602
gotException.enter();
603-
System.out.println("OSError Pos02");
604603
throw raise(OSError, path);
605604
}
606605
}
@@ -1801,7 +1800,7 @@ String readlink(String str, @SuppressWarnings("unused") PNone none) {
18011800
@GenerateNodeFactory
18021801
public abstract static class StrErrorNode extends PythonBuiltinNode {
18031802

1804-
private final static HashMap<Integer, String> STR_ERROR_MAP = new HashMap<Integer, String>();
1803+
private final static HashMap<Integer, String> STR_ERROR_MAP = new HashMap<>();
18051804

18061805
@Specialization
18071806
String getStrError(int errno) {

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/PNodeWithContext.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
import com.oracle.graal.python.builtins.objects.function.PKeyword;
4949
import com.oracle.graal.python.builtins.objects.type.LazyPythonClass;
5050
import com.oracle.graal.python.builtins.objects.type.PythonClass;
51-
import com.oracle.graal.python.nodes.argument.positional.PositionalArgumentsNode;
5251
import com.oracle.graal.python.nodes.attributes.LookupAttributeInMRONode;
5352
import com.oracle.graal.python.nodes.attributes.WriteAttributeToObjectNode;
5453
import com.oracle.graal.python.nodes.call.special.CallVarargsMethodNode;

0 commit comments

Comments
 (0)