From 7d0413ddc2569d761d742c6a26f2dc58de20879f Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Thu, 29 Mar 2018 13:56:10 +0200
Subject: [PATCH] typos

---
 .../java/lcsb/mapviewer/annotation/services/MiRNAParser.java  | 1 -
 model/src/main/java/lcsb/mapviewer/model/cache/FileEntry.java | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/annotation/src/main/java/lcsb/mapviewer/annotation/services/MiRNAParser.java b/annotation/src/main/java/lcsb/mapviewer/annotation/services/MiRNAParser.java
index 9446a4886a..57b69010ec 100644
--- a/annotation/src/main/java/lcsb/mapviewer/annotation/services/MiRNAParser.java
+++ b/annotation/src/main/java/lcsb/mapviewer/annotation/services/MiRNAParser.java
@@ -615,7 +615,6 @@ public class MiRNAParser extends CachableInterface implements IExternalService {
     String cacheQuery = PROJECT_SUGGESTED_QUERY_PREFIX + "\n" + project.getId();
     String cachedData = getCacheValue(cacheQuery);
     List<String> result;
-    logger.debug(cachedData);
     if (cachedData == null) {
       result = getSuggestedQueryListWithoutCache(project);
       cachedData = StringUtils.join(result, "\n");
diff --git a/model/src/main/java/lcsb/mapviewer/model/cache/FileEntry.java b/model/src/main/java/lcsb/mapviewer/model/cache/FileEntry.java
index 527fa61854..2f7cfb037a 100644
--- a/model/src/main/java/lcsb/mapviewer/model/cache/FileEntry.java
+++ b/model/src/main/java/lcsb/mapviewer/model/cache/FileEntry.java
@@ -16,8 +16,8 @@ import javax.persistence.Table;
 /**
  * Database object representing file put in the system (it can be some cached
  * file, or uploaded file). There are two ways of storing file. First is by
- * storing the content in database direclty (int the {@link #fileContent}
- * field). Second way should be used for all big files - it soters content in
+ * storing the content in database directly (in the {@link #fileContent}
+ * field). Second way should be used for all big files - it stores content in
  * the local file system (relative path is stored in {@link #localPath} field).
  * 
  * @author Piotr Gawron
-- 
GitLab