From 25f50531534a93af3b5997d2b24af6d1e54851b4 Mon Sep 17 00:00:00 2001 From: Dimitar Tsonev <56803540+DimitarDTsonev@users.noreply.github.com> Date: Wed, 11 Dec 2024 08:01:16 +0200 Subject: [PATCH] Fixing typo README.md (#177) --- 09-threads/lab/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) { } ``` ⭐ Бележки: