Skip to content

Commit 604e4d5

Browse files
committed
ttt: do not widen visibility of internal method
[skip CI]
1 parent 2180edf commit 604e4d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

algorithms/active/ttt/src/main/java/de/learnlib/algorithms/ttt/mealy/TTTLearnerMealy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ protected TTTTransition<I, Word<O>> createTransition(TTTState<I, Word<O>> state,
6161

6262
@Override
6363
@SuppressWarnings("unchecked")
64-
public boolean refineHypothesisSingle(DefaultQuery<I, Word<O>> ceQuery) {
64+
protected boolean refineHypothesisSingle(DefaultQuery<I, Word<O>> ceQuery) {
6565
DefaultQuery<I, Word<O>> shortenedCeQuery =
6666
MealyUtil.shortenCounterExample((TTTHypothesisMealy<I, O>) hypothesis, ceQuery);
6767
return shortenedCeQuery != null && super.refineHypothesisSingle(shortenedCeQuery);

0 commit comments

Comments
 (0)