We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb7c37 commit 1c8e6d7Copy full SHA for 1c8e6d7
substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/meta/AnalysisType.java
@@ -30,6 +30,7 @@
30
import java.util.Collection;
31
import java.util.HashSet;
32
import java.util.List;
33
+import java.util.Objects;
34
import java.util.Set;
35
import java.util.concurrent.ConcurrentHashMap;
36
import java.util.concurrent.ConcurrentMap;
@@ -1304,7 +1305,7 @@ public AnalysisMethod findConstructor(Signature signature) {
1304
1305
}
1306
1307
public Set<AnalysisMethod> getOpenTypeWorldDispatchTableMethods() {
- AnalysisError.guarantee(dispatchTableMethods != null);
1308
+ Objects.requireNonNull(dispatchTableMethods);
1309
return dispatchTableMethods;
1310
1311
0 commit comments