Relates :
|
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.
|