-
Bug
-
Resolution: Done
-
Minor
-
JBossAS-4.0.3 SP1, JBossAS-3.2.8RC1
-
None
The fix to add SystemProperty "org.jboss.net.protocol.file.decodeFilePaths" in FileURLConnection
does not work properly. The system property is being used to retrieve a different property with
the value of the first.
String flag = System.getProperty("org.jboss.net.protocol.file.decodeFilePaths");
if( flag != null )
decodeFilePaths = Boolean.getBoolean;
This should be:
decodeFilePaths = Boolean.valueOf.booleanValue();