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.
2 parents 1ed210e + 43509f2 commit de446c4Copy full SHA for de446c4
src/main/gov/nasa/jpf/vm/ChoiceGeneratorBase.java
@@ -100,7 +100,7 @@ public static boolean useRandomization() {
100
* don't use this since it is not safe for cascaded ChoiceGenerators
101
* (we need the 'id' to be as context specific as possible)
102
*/
103
- @Deprecated
+ @Deprecated(forRemoval = true)
104
protected ChoiceGeneratorBase() {
105
id = "?";
106
}
src/main/gov/nasa/jpf/vm/choice/PermutationCG.java
@@ -32,6 +32,8 @@ public class PermutationCG extends ChoiceGeneratorBase<int[]>{
32
protected PermutationGenerator pg;
33
protected int[] permutation;
34
35
36
+ @SuppressWarnings("removal")
37
public PermutationCG (PermutationGenerator pg){
38
this.pg = pg;
39
0 commit comments