Polish: Overriding methods should do more than simply call the same method in the super class

This commit is contained in:
igor-suhorukov
2018-03-02 01:58:05 +03:00
committed by Juergen Hoeller
parent cd4f0935c5
commit ed936cbd89
4 changed files with 0 additions and 53 deletions

View File

@@ -462,16 +462,6 @@ final class HtmlUnitRequestBuilder implements RequestBuilder, Mergeable {
}
return session;
}
@Override
public HttpSession getSession() {
return super.getSession();
}
@Override
public void setSession(HttpSession session) {
super.setSession(session);
}
}