Skip to content

Commit 6cd06aa

Browse files
committed
createRandomModiciation field now is returned as false if it is null
1 parent 500eecb commit 6cd06aa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/de/rub/nds/modifiablevariable/ModifiableVariable.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ public boolean containsAssertion() {
156156
}
157157

158158
public Boolean isCreateRandomModification() {
159+
if (createRandomModification == null) {
160+
return false;
161+
}
159162
return createRandomModification;
160163
}
161164
}

0 commit comments

Comments
 (0)