Merge branch 'jetty-9.2.x' into jetty-9.3.x

This commit is contained in:
Joakim Erdfelt 2016-06-22 10:43:27 -07:00
commit b3635df543
1 changed files with 17 additions and 0 deletions

View File

@ -93,6 +93,23 @@ public class JsrExtension implements Extension
return parameters;
}
@Override
public boolean equals(Object o)
{
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
JsrExtension that = (JsrExtension) o;
return name != null ? name.equals(that.name) : that.name == null;
}
@Override
public int hashCode()
{
return name != null ? name.hashCode() : 0;
}
@Override
public String toString()
{