Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] HttpURI

Hi,

Digging in some code I saw in the HttpURI source code :

 public void decodeQueryTo(MultiMap<String> parameters)
    {
        if (_query==_fragment)
            return;


_query and _fragment being defined as String,
I wonder why you are checking strict equality and not using equals.


Regards,

Guillaume

Back to the top