diff --git a/09-threads/lab/README.md b/09-threads/lab/README.md index 6294564d..2e686198 100644 --- a/09-threads/lab/README.md +++ b/09-threads/lab/README.md @@ -53,6 +53,9 @@ Consumer нишките ни ще имат фиксиран брой `N` и за ```java package bg.sofia.uni.fmi.mjt.sentimentnalyzer; +import bg.sofia.uni.fmi.mjt.sentimentnalyzer.exceptions.SentimentAnalysisException; + +import java.io.Reader; import java.util.Map; public interface SentimentAnalyzerAPI { @@ -159,7 +162,7 @@ public enum SentimentScore { * @param stopWords set containing stop words * @param sentimentLexicon map containing the sentiment lexicon, where the key is the word and the value is the sentiment score */ -public ParallelSentimentAnalyzer(int workersCount, Set stopWords, Map sentimentLexicon) { } +public ParallelSentimentAnalyzer(int workersCount, Set stopWords, Map sentimentLexicon) { } ``` ⭐ Бележки: