Skip to content
Snippets Groups Projects
Commit 7dea79c8 authored by gakin's avatar gakin
Browse files

SSDM-4099: Minor clean-up.

SVN: 37081
parent 05f76797
No related branches found
No related tags found
No related merge requests found
......@@ -895,7 +895,7 @@ public class DataSetRegistrationTask<T extends DataSetInformation> implements IM
// confirm deletions
// TODO confirm
// v3Api.confirmDeletions(sessionToken, Arrays.asList(expDeletionId, dsDeletionId, smpDeletionId));
v3Api.confirmDeletions(sessionToken, Arrays.asList(expDeletionId, dsDeletionId, smpDeletionId));
}
private void saveSyncTimestamp()
......
......@@ -152,8 +152,7 @@ public class EntityGraph<N extends Node<?>>
String differentiatorStr = "";
if (node.getEntityKind().equals("EXPERIMENT")) // in order to differentiate between experiments in the same space but under different projects
{
differentiatorStr = "-" +
node.getPermId().substring(node.getPermId().indexOf('-') + 1);
differentiatorStr = node.getPermId().substring(node.getPermId().indexOf('-') + 1);
}
else {
differentiatorStr = "" + node.getEntityKind().charAt(0);
......
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