Skip to content

Commit

Permalink
Issue #352: avoid unneeded line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Horsmann committed May 16, 2016
1 parent 4aa1fa1 commit 52fec4c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ public void write(File outputFolder, FeatureStore featureStore, boolean useDense
while (iterator.hasNext()) {
Instance instance = iterator.next();
if (currentSequenceId != instance.getSequenceId()) {
if(currentSequenceId!=-1){
bw.write("\n");
}
currentSequenceId = instance.getSequenceId();
}

Expand Down

0 comments on commit 52fec4c

Please sign in to comment.