Author: j16sdiz
Date: 2008-12-19 13:24:08 +0000 (Fri, 19 Dec 2008)
New Revision: 24586

Modified:
   trunk/freenet/src/freenet/keys/FreenetURI.java
Log:
no trim() needed here

Modified: trunk/freenet/src/freenet/keys/FreenetURI.java
===================================================================
--- trunk/freenet/src/freenet/keys/FreenetURI.java      2008-12-19 13:23:43 UTC 
(rev 24585)
+++ trunk/freenet/src/freenet/keys/FreenetURI.java      2008-12-19 13:24:08 UTC 
(rev 24586)
@@ -265,7 +265,7 @@
                if(atchar == -1)
                        throw new MalformedURLException("There is no @ in that 
URI! (" + URI + ')');
 
-               String _keyType = URI.substring(0, atchar).toUpperCase().trim();
+               String _keyType = URI.substring(0, atchar).toUpperCase();
                URI = URI.substring(atchar + 1);
 
                boolean validKeyType = false;

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to