Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[issue-37] Resolve issue - Suggestion of a method accessibility #38

Merged
merged 1 commit into from
Mar 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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