Skip to content

Commit

Permalink
Merge pull request #38 from shin285/issue-37
Browse files Browse the repository at this point in the history
[issue-37] Resolve issue - Suggestion of a method accessibility
  • Loading branch information
gamamoe authored Mar 5, 2018
2 parents a1024dc + d16563e commit e67cc48
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package kr.co.shineware.nlp.komoran.model;

import java.util.*;

import kr.co.shineware.nlp.komoran.constant.SYMBOL;
import kr.co.shineware.nlp.komoran.core.model.LatticeNode;
import kr.co.shineware.nlp.komoran.parser.KoreanUnitParser;
import kr.co.shineware.util.common.model.Pair;

import java.util.*;


public class KomoranResult {

Expand All @@ -27,7 +27,7 @@ public List<String> getMorphesByTags(String... str) {
return this.getMorphesByTags(Arrays.asList(str));
}

private List<String> getMorphesByTags(Collection<String> targetPosCollection) {
public List<String> getMorphesByTags(Collection<String> targetPosCollection) {

Set<String> targetPosSet = new HashSet<>(targetPosCollection);

Expand Down

0 comments on commit e67cc48

Please sign in to comment.