-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 8
-
Component/s: security-libs
-
b36
-
generic
-
generic
-
Verified
CodeSource.matchLocation(..) method currently uses the following test to check for port equality :
- if (location.getPort() != -1) {
- if (location.getPort() != that.location.getPort())
- return false;
- }
The URLStreamHandler uses a more thorough check on port equality checks. It uses the getDefaultPort call.
- if (location.getPort() != -1) {
- if (location.getPort() != that.location.getPort())
- return false;
- }
The URLStreamHandler uses a more thorough check on port equality checks. It uses the getDefaultPort call.
- relates to
-
JDK-7152564 Improve CodeSource.matchLocation(CodeSource) performance
-
- Resolved
-