Skip to content

Commit

Permalink
AbstractMLC: remove final from overrode methods
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Oct 15, 2018
1 parent ce9c147 commit a98e9da
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -305,7 +305,7 @@ public void addQueueNames(String... queueNames) {
* Add queue(s) to this container's list of queues.
* @param queues The queue(s) to add.
*/
public final void addQueues(Queue... queues) {
public void addQueues(Queue... queues) {
addQueueNames(collectQueueNames(queues));
}

Expand All @@ -325,7 +325,7 @@ public boolean removeQueueNames(String... queueNames) {
* @param queues The queue(s) to remove.
* @return the boolean result of removal on the target {@code queueNames} List.
*/
public final boolean removeQueues(Queue... queues) {
public boolean removeQueues(Queue... queues) {
return removeQueueNames(collectQueueNames(queues));
}

Expand Down

0 comments on commit a98e9da

Please sign in to comment.