Skip to content

Commit a65b311

Browse files
committed
cleanups
1 parent 512a80e commit a65b311

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test-support/learning-examples/src/main/java/de/learnlib/testsupport/example/mealy/ExampleRandomStateLocalInputMealy.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private ExampleRandomStateLocalInputMealy(Random random,
7676
}
7777

7878
final CompactMealy<I, O> minimized = HopcroftMinimizer.minimizeMealyInvasive(source, alphabet);
79-
final MutableMapping<Integer, @Nullable Collection<I>> enabledInputs = source.createStaticStateMapping();
79+
final MutableMapping<Integer, Collection<I>> enabledInputs = source.createStaticStateMapping();
8080

8181
for (Integer s : minimized) {
8282
final Collection<I> stateInputs = new HashSet<>(alphabet);
@@ -131,9 +131,9 @@ private static <O> List<O> validateOutputs(O undefinedOutput, O... outputs) {
131131
private static class MockedSLIMealy<S, I, T, O> implements StateLocalInputMealyMachine<S, I, T, O> {
132132

133133
private final MealyMachine<S, I, T, O> delegate;
134-
private final Mapping<S, @Nullable Collection<I>> localInputs;
134+
private final Mapping<S, Collection<I>> localInputs;
135135

136-
MockedSLIMealy(MealyMachine<S, I, T, O> delegate, Mapping<S, @Nullable Collection<I>> localInputs) {
136+
MockedSLIMealy(MealyMachine<S, I, T, O> delegate, Mapping<S, Collection<I>> localInputs) {
137137
this.delegate = delegate;
138138
this.localInputs = localInputs;
139139
}

0 commit comments

Comments
 (0)