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

debug removed

parent 92308cad
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!464Resolve "upgrade 3rd party libraries"
......@@ -59,13 +59,10 @@ public class DrugRestImpl extends BaseRestImpl {
organism = TaxonomyBackend.HUMAN_TAXONOMY;
}
Drug drug = drugService.getByName(query, new DbSearchCriteria().project(project).organisms(organism).colorSet(0));
logger.debug(drug);
if (drug != null) {
List<Model> models = getModels(projectId, "*", token);
result.add(prepareDrug(drug, columnSet, models));
}
logger.debug(result);
return result;
}
......
......@@ -163,7 +163,6 @@ public class ElementRestImplTest extends RestTestFunctions {
antisenseRna.addRegion(mr);
antisenseRna.setState(state);
Map<String, Object> result = _elementsRestImpl.getOthersForElement(antisenseRna);
logger.debug(result);
assertNotNull(result.get("modifications"));
assertEquals(state, result.get("structuralState"));
List<Map<String, Object>> modifications = (List<Map<String, Object>>) result.get("modifications");
......
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