Skip to content

Commit 8f3caeb

Browse files
committed
Fixed coding style
1 parent dda2343 commit 8f3caeb

File tree

1 file changed

+5
-4
lines changed
  • src/main/java/org/culturegraph/mf/morph/collectors

1 file changed

+5
-4
lines changed

src/main/java/org/culturegraph/mf/morph/collectors/Concat.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@
2020

2121
/**
2222
* Corresponds to the <code>&lt;collect-literal&gt;</code> tag.
23-
*
23+
*
2424
* @author Markus Michael Geipel
2525
*/
26-
public final class Concat extends AbstractFlushingCollect{
26+
public final class Concat extends AbstractFlushingCollect {
27+
2728
private final StringBuilder builder = new StringBuilder();
29+
2830
private String prefix = "";
2931
private String postfix = "";
3032
private String delimiter = "";
@@ -33,8 +35,7 @@ public Concat(final Metamorph metamorph) {
3335
super(metamorph);
3436
setNamedValueReceiver(metamorph);
3537
}
36-
37-
38+
3839
public void setPrefix(final String prefix) {
3940
this.prefix = prefix;
4041
}

0 commit comments

Comments
 (0)