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