Skip to content

Commit 5d05dbc

Browse files
committed
Fix output by prefixing a space
1 parent 842811f commit 5d05dbc

File tree

1 file changed

+1
-1
lines changed
  • metafacture-flux/src/main/java/org/metafacture/flux/parser

1 file changed

+1
-1
lines changed

metafacture-flux/src/main/java/org/metafacture/flux/parser/Flow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void addElement(final Receiver nextElement) {
7575
}
7676
}
7777
else {
78-
throw new FluxParseException(element.getClass().getCanonicalName() + "is not a sender");
78+
throw new FluxParseException(element.getClass().getCanonicalName() + " is not a sender");
7979
}
8080
element = nextElement;
8181
}

0 commit comments

Comments
 (0)