Skip to content

Commit 4461774

Browse files
committed
minor cleanup - removed debugging System.out.println
1 parent a1012ee commit 4461774

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/formatting/ErrorMessageFormatter.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,7 @@ public String format(PythonObjectLibrary lib, String format, Object... args) {
111111
matchIdx++;
112112
}
113113
}
114-
try {
115-
return String.format(sb.toString(), compact(args, removedCnt));
116-
} catch (Throwable t) {
117-
System.out.println(" +++ " + format + " " + sb.toString());
118-
throw t;
119-
}
114+
return String.format(sb.toString(), compact(args, removedCnt));
120115
}
121116

122117
@TruffleBoundary

0 commit comments

Comments
 (0)