Skip to content

Commit a98e9da

Browse files
committed
AbstractMLC: remove final from overrode methods
https://build.spring.io/browse/AMQP-AMQP20X-49/
1 parent ce9c147 commit a98e9da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/AbstractMessageListenerContainer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2017 the original author or authors.
2+
* Copyright 2002-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -305,7 +305,7 @@ public void addQueueNames(String... queueNames) {
305305
* Add queue(s) to this container's list of queues.
306306
* @param queues The queue(s) to add.
307307
*/
308-
public final void addQueues(Queue... queues) {
308+
public void addQueues(Queue... queues) {
309309
addQueueNames(collectQueueNames(queues));
310310
}
311311

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

0 commit comments

Comments
 (0)