Skip to content

Commit 24c3013

Browse files
author
Matthias Radestock
committed
cosmetic
1 parent af3bd41 commit 24c3013

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/com/rabbitmq/client/impl/UnknownChannelException.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,16 @@
3131

3232
package com.rabbitmq.client.impl;
3333

34-
class UnknownChannelException extends RuntimeException{
34+
class UnknownChannelException extends RuntimeException {
3535
private final int channelNumber;
36-
37-
public UnknownChannelException(int channelNumber){
38-
super("Unknown channel number " + channelNumber + " for this this connection");
36+
37+
public UnknownChannelException(int channelNumber) {
38+
super("Unknown channel number " + channelNumber);
3939
this.channelNumber = channelNumber;
4040
}
4141

42-
public int getChannelNumber(){
42+
public int getChannelNumber() {
4343
return channelNumber;
4444
}
45+
4546
}

0 commit comments

Comments
 (0)