Skip to content

Commit 96b24fe

Browse files
committed
Fix placement of space in uniquename
1 parent 114c3fd commit 96b24fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

org/opentreeoflife/smasher/Taxon.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ String uniqueName() {
10201020
String urank = "";
10211021
if (this.rank != null) urank = this.rank + " ";
10221022
if (informativeFail)
1023-
urank = urank + " " + this.sourceIds.get(0);
1023+
urank = urank + this.sourceIds.get(0) + " ";
10241024

10251025
Taxon i = this.informative();
10261026
String irank = "";

0 commit comments

Comments
 (0)