Skip to content

Commit c74cd1f

Browse files
committed
Fix QueueChannel.destroy() (previous commit)
1 parent 585da69 commit c74cd1f

File tree

1 file changed

+1
-1
lines changed
  • spring-integration-core/src/main/java/org/springframework/integration/channel

1 file changed

+1
-1
lines changed

spring-integration-core/src/main/java/org/springframework/integration/channel/QueueChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ public int getRemainingCapacity() {
236236
}
237237

238238
@Override
239-
public void destroy() {
239+
public void destroy() throws Exception {
240240
super.destroy();
241241
if (this.sizeGauge != null) {
242242
this.sizeGauge.remove();

0 commit comments

Comments
 (0)