Toggle navigation
Home
org.languagetool.rules.ConfusionSet to java.util.List<org.languagetool.rules.ConfusionSet>
No. of Instances - 11
No. of Commits - 2
No. of Projects - {'languagetool'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Jdk
Mapping:
Rename Variable
confusionSet
to
confusionSets
confusionSet
to
confusionSets
wordToSet
to
wordToSets
wordToSet
to
wordToSets
wordToSet
to
wordToSets
wordToSet
to
wordToSets
wordToSet
to
wordToSets
confusionSet
to
confusionSets
confusionSet
to
confusionSets
confusionSet
to
confusionSets
Cascading Type Change (Similar)
ConfusionSet
to
List<ConfusionSet>
ConfusionSet
to
List<ConfusionSet>
Add or Remove Method invocation
set
to
Collections.singletonList(set)
map.get("there").getFactor()
to
map.get("there").get(0).getFactor()
map.get("their").getFactor()
to
map.get("their").get(0).getFactor()
map.get("foo").getFactor()
to
map.get("foo").get(0).getFactor()
map.get("bar").getFactor()
to
map.get("bar").get(0).getFactor()
subConfusionSet
to
subConfusionSet.get(0)
entry.getValue().getSet()
to
entry.getValue().get(0).getSet()
entry.getValue().getSet()
to
entry.getValue().get(0).getSet()
Rename Method invocation
map.get("there")
to
map.get("there").get(0)
map.get("their")
to
map.get("their").get(0)
map.get("foo")
to
map.get("foo").get(0)
map.get("foo")
to
map.get("foo").get(0)