Details
Description
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.