Skip to content

Commit 7f7ca7d

Browse files
committed
Remove references to JsonEncoder from JavaDoc
These references would be a problem when splitting up Metafacture in the next release.
1 parent 9894dfe commit 7f7ca7d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/org/culturegraph/mf/stream/converter/JsonToElasticsearchBulk.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
import com.fasterxml.jackson.databind.ObjectMapper;
3434

3535
/**
36-
* Add Elasticsearch bulk indexing metadata to JSON input.<br/>
37-
* Use after {@link JsonEncoder}, before writing.
36+
* Add Elasticsearch bulk indexing metadata to JSON input.
3837
*
3938
* @author Fabian Steeg (fsteeg)
4039
* @author Jens Wille
@@ -47,8 +46,8 @@ public class JsonToElasticsearchBulk extends
4746
DefaultObjectPipe<String, ObjectReceiver<String>> {
4847

4948
/**
50-
* {@link JsonEncoder} outputs multiple fields with identical names, so use
51-
* a MultiMap with Jackson to collect values under a single key.
49+
* Use a MultiMap with Jackson to collect values from multiple fields with
50+
* identical names under a single key.
5251
*/
5352
static class MultiMap extends HashMap<String, Object> {
5453
private static final long serialVersionUID = 490682490432334605L;

0 commit comments

Comments
 (0)