Skip to content

Commit 3bb5455

Browse files
committed
[GR-60685] Refactor UnsupportedFeatures reporting.
PullRequest: graal/19691
2 parents 2fb7707 + 95152a6 commit 3bb5455

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)