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 b7737c7 commit 73b5a1aCopy full SHA for 73b5a1a
src/main/java/java/lang/String.java
@@ -3873,9 +3873,7 @@ public static String copyValueOf(char data[]) {
3873
* @diffblue.untested
3874
*/
3875
public static String valueOf(boolean b) {
3876
- // DIFFBLUE MODEL LIBRARY This is treated internally in CBMC
3877
- return CProver.nondetWithoutNullForNotModelled();
3878
- // return b ? "true" : "false";
+ return b ? "true" : "false";
3879
}
3880
3881
/**
0 commit comments