Toggle navigation
Home
edu.stanford.nlp.stats.Counter to java.util.List
No. of Instances - 16
No. of Commits - 5
No. of Projects - {'CoreNLP'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Jdk
Mapping:
Add or Remove Method invocation
Pair.makePair(candidate.get(),features)
to
Pair.makePair(candidate.get(),new ArrayList<Counter<String>>(featuresSoFar){ { add(features); } } )
Pair.makePair(firstState,new ArrayList<>())
to
Pair.makePair(firstState,new ArrayList<>(0))
Cascading Type Change (Different)
ClassicCounter<>
to
ArrayList<>
Cascading Type Change (Similar)
Counter<String>
to
List<Counter<String>>