-
Bug
-
Resolution: Fixed
-
P3
-
1.0, 4.0
-
1.0beta
-
sparc
-
solaris_2.4
-
Not verified
While reading java.net.URLConnection
I noticed that:
On line 395
'0' <= c && c <= 9))
should evidently be:
'0' <= c && c <= '9'))
This looks like part of some kind of name translation rule.
I noticed that:
On line 395
'0' <= c && c <= 9))
should evidently be:
'0' <= c && c <= '9'))
This looks like part of some kind of name translation rule.