This is an automated email from the ASF dual-hosted git repository. clebertsuconic pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit eb582a676f052c4003c63943d89d71fe79468949 Author: Otavio R. Piske <[email protected]> AuthorDate: Wed Feb 20 21:00:30 2019 +0100 NO-JIRA Remove redundant modifiers --- .../org/apache/activemq/artemis/api/core/client/ClientSession.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/api/core/client/ClientSession.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/api/core/client/ClientSession.java index 14ca75c..008ab3f 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/api/core/client/ClientSession.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/api/core/client/ClientSession.java @@ -43,7 +43,7 @@ public interface ClientSession extends XAResource, AutoCloseable { * * @see ClientSession#addressQuery(SimpleString) */ - public interface AddressQuery { + interface AddressQuery { /** * Returns <code>true</code> if the binding exists, <code>false</code> else. @@ -87,7 +87,7 @@ public interface ClientSession extends XAResource, AutoCloseable { * * @see ClientSession#queueQuery(SimpleString) */ - public interface QueueQuery { + interface QueueQuery { /** * Returns <code>true</code> if the queue exists, <code>false</code> else.
