Skip to content
Snippets Groups Projects
Commit 436734fe authored by tpylak's avatar tpylak
Browse files

LMS-1264 DSU tracking system: minor

SVN: 13531
parent 2bb11b22
No related branches found
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ public class EntityTrackingEmailData ...@@ -145,7 +145,7 @@ public class EntityTrackingEmailData
// append info about tracked samples // append info about tracked samples
if (getSequencingSamplesData().isEmpty()) if (getSequencingSamplesData().isEmpty())
{ {
sb.append("no new samples tracked"); sb.append("no new samples tracked\n");
} else } else
{ {
for (SequencingSampleData seqencingSampleData : getSequencingSamplesData()) for (SequencingSampleData seqencingSampleData : getSequencingSamplesData())
...@@ -165,7 +165,6 @@ public class EntityTrackingEmailData ...@@ -165,7 +165,6 @@ public class EntityTrackingEmailData
sb.append("\n"); sb.append("\n");
} }
} }
sb.append("\n");
// append info about tracked data sets // append info about tracked data sets
if (getDataSets().isEmpty()) if (getDataSets().isEmpty())
{ {
......
...@@ -169,7 +169,7 @@ public class EntityTrackingEmailGenerator implements IEntityTrackingEmailGenerat ...@@ -169,7 +169,7 @@ public class EntityTrackingEmailGenerator implements IEntityTrackingEmailGenerat
{ {
String headingSuffix = String headingSuffix =
flowLaneSamplesSize == 0 ? "" : String.format( flowLaneSamplesSize == 0 ? "" : String.format(
" and %d connected Flow Lane sample(s).", flowLaneSamplesSize); " and %d connected Flow Lane sample(s)", flowLaneSamplesSize);
sectionHeading = sectionHeading =
String.format("Tracked creation of Sequencing sample '%s'%s.", String.format("Tracked creation of Sequencing sample '%s'%s.",
sequencingSampleCode, headingSuffix); sequencingSampleCode, headingSuffix);
......
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