Skip to content

Commit

Permalink
Fixed Module implementation to correctly include XML namespaces.
Browse files Browse the repository at this point in the history
Change-Id: I528a4c2519e2e6023bdbd2328bbc63b9e00018ad
  • Loading branch information
kenwenzel committed Apr 12, 2016
1 parent 975efdb commit 51211b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions llrp4j-core/src/main/java/net/enilink/llrp4j/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public Module addClasses(Collection<Class<?>> classes) {

public Module include(Module other) {
this.classes.addAll(other.classes);
this.namespaces.putAll(other.namespaces);
return this;
}

Expand Down

0 comments on commit 51211b3

Please sign in to comment.