Repository: qpid-jms Updated Branches: refs/heads/master 40102fe8b -> f87e75425
Don't include a known empty value in the error message. Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/f87e7542 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/f87e7542 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/f87e7542 Branch: refs/heads/master Commit: f87e754259fb885cb8b7e0a975bf77f69cd49909 Parents: 40102fe Author: Timothy Bish <tabish...@gmail.com> Authored: Thu Jan 8 09:40:45 2015 -0500 Committer: Timothy Bish <tabish...@gmail.com> Committed: Thu Jan 8 09:40:45 2015 -0500 ---------------------------------------------------------------------- .../main/java/org/apache/qpid/jms/provider/ProviderFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/f87e7542/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/ProviderFactory.java ---------------------------------------------------------------------- diff --git a/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/ProviderFactory.java b/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/ProviderFactory.java index b3c9664..1261b7a 100644 --- a/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/ProviderFactory.java +++ b/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/ProviderFactory.java @@ -95,7 +95,7 @@ public abstract class ProviderFactory { public static ProviderFactory findProviderFactory(URI location) throws IOException { String scheme = location.getScheme(); if (scheme == null) { - throw new IOException("No Provider scheme specified: [" + location + "]"); + throw new IOException("No Provider scheme specified."); } ProviderFactory factory = null; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org