Skip to content

Commit 94eb8f6

Browse files
committed
Fixes issue #99: Rename SimpleXmlWriter.configure()
Renamed the `configure` method in SimpleXmlWriter (now SimplXmlEncoder) into `setNamespaces` to reflect what its actually doing.
1 parent 5fdf003 commit 94eb8f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/culturegraph/mf/stream/converter/xml/SimpleXmlEncoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public void setSeparateRoots(final boolean separateRoots) {
107107
this.separateRoots = separateRoots;
108108
}
109109

110-
public void configure(final MultiMap multimap) {
110+
public void setNamespaces(final MultiMap multimap) {
111111
this.namespaces = multimap.getMap(NAMESPACES);
112112
}
113113

0 commit comments

Comments
 (0)