Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1752#discussion_r159984911
--- Diff:
artemis-commons/src/main/java/org/apache/activemq/artemis/utils/collections/TypedProperties.java
---
@@ -93,6 +94,7 @@ public void putBooleanProperty(final SimpleString key,
final boolean value) {
}
public void putByteProperty(final SimpleString key, final byte value) {
+ checkCreateProperties();
--- End diff --
am i missing something this seems like a duplicate method call.
---