Author: nextgens
Date: 2007-04-29 20:38:30 +0000 (Sun, 29 Apr 2007)
New Revision: 13057
Modified:
trunk/freenet/src/freenet/keys/FreenetURI.java
Log:
logging, again :$
Modified: trunk/freenet/src/freenet/keys/FreenetURI.java
===================================================================
--- trunk/freenet/src/freenet/keys/FreenetURI.java 2007-04-29 20:33:46 UTC
(rev 13056)
+++ trunk/freenet/src/freenet/keys/FreenetURI.java 2007-04-29 20:38:30 UTC
(rev 13057)
@@ -242,7 +242,7 @@
// decode keyType
int atchar = URI.indexOf('@');
if (atchar == -1) {
- throw new MalformedURLException("There is no @ in that
URI!");
+ throw new MalformedURLException("There is no @ in that
URI! ("+URI.toString()+')');
} else {
keyType = URI.substring(colon + 1,
atchar).toUpperCase().trim();
}