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 fd0a89f commit f369b62Copy full SHA for f369b62
src/main/java/java/lang/Object.java
@@ -41,16 +41,8 @@ public Object() {
41
}
42
43
public final Class<?> getClass() {
44
- /*
45
- * MODELS LIBRARY {
46
- * We make this call to Class.forName to ensure it is loaded
47
- * by CBMC even with --lazy-methods on. We have to do this
48
- * because the internal support for getClass use the model of
49
- * Class.forName.
50
- * }
51
- */
52
- Class c = Class.forName("");
53
- return CProver.nondetWithoutNullForNotModelled();
+ // DIFFBLUE MODEL LIBRARY
+ return Class.forName(CProver.classIdentifier(this));
54
55
56
public int hashCode() {
0 commit comments