We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9fb92 commit 034ef03Copy full SHA for 034ef03
1 file changed
src/main/java/com/rabbitmq/client/ConnectionFactory.java
@@ -376,7 +376,8 @@ public void setUri(URI uri)
376
if (userInfo != null) {
377
String userPass[] = userInfo.split(":");
378
if (userPass.length > 2) {
379
- throw new IllegalArgumentException("Bad user info in AMQP URI: user info contains more than one colon");
+ throw new IllegalArgumentException(
380
+ "Bad user info in AMQP URI: user info contains more than one colon");
381
}
382
383
setUsername(uriDecode(userPass[0]));
0 commit comments