Skip to content

Commit 95152a6

Browse files
committed
Refactor UnsupportedFeatures reporting.
1 parent 2fb7707 commit 95152a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/constraints/UnsupportedFeatures.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public void report(BigBang bb) {
112112
printStream.println();
113113
}
114114
if (!singleEntry) {
115-
if (entry.originalException != null && !(entry.originalException instanceof UnsupportedFeatureException)) {
115+
if (entry.originalException != null) {
116116
printStream.print("Original exception that caused the problem: ");
117117
entry.originalException.printStackTrace(printStream);
118118
}

0 commit comments

Comments
 (0)