Skip to content
Snippets Groups Projects
Commit 7d0413dd authored by Piotr Gawron's avatar Piotr Gawron
Browse files

typos

parent f3d514d7
No related branches found
No related tags found
1 merge request!262some optimizations + fix on pubmed listing
...@@ -615,7 +615,6 @@ public class MiRNAParser extends CachableInterface implements IExternalService { ...@@ -615,7 +615,6 @@ public class MiRNAParser extends CachableInterface implements IExternalService {
String cacheQuery = PROJECT_SUGGESTED_QUERY_PREFIX + "\n" + project.getId(); String cacheQuery = PROJECT_SUGGESTED_QUERY_PREFIX + "\n" + project.getId();
String cachedData = getCacheValue(cacheQuery); String cachedData = getCacheValue(cacheQuery);
List<String> result; List<String> result;
logger.debug(cachedData);
if (cachedData == null) { if (cachedData == null) {
result = getSuggestedQueryListWithoutCache(project); result = getSuggestedQueryListWithoutCache(project);
cachedData = StringUtils.join(result, "\n"); cachedData = StringUtils.join(result, "\n");
......
...@@ -16,8 +16,8 @@ import javax.persistence.Table; ...@@ -16,8 +16,8 @@ import javax.persistence.Table;
/** /**
* Database object representing file put in the system (it can be some cached * 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 * file, or uploaded file). There are two ways of storing file. First is by
* storing the content in database direclty (int the {@link #fileContent} * storing the content in database directly (in the {@link #fileContent}
* field). Second way should be used for all big files - it soters content in * 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). * the local file system (relative path is stored in {@link #localPath} field).
* *
* @author Piotr Gawron * @author Piotr Gawron
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment