Skip to content

Commit 2e899cc

Browse files
committed
Fixed missing spaces in error string in ChannelManager.createChannelInternal
1 parent 498bcc2 commit 2e899cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ private synchronized ChannelN createChannelInternal(AMQConnection connection, in
111111
// That number's already allocated! Can't do it
112112
// This should never happen unless something has gone
113113
// badly wrong with our implementation.
114-
throw new IllegalStateException("We have attempted to"
115-
+ "create a channel with a number that is already in"
114+
throw new IllegalStateException("We have attempted to "
115+
+ "create a channel with a number that is already in "
116116
+ "use. This should never happen. Please report this as a bug.");
117117
}
118118
ChannelN ch = new ChannelN(connection, channelNumber);

0 commit comments

Comments
 (0)