Apply code cleanup rules to projects

Apply automated cleanup rules to add `@Override` and `@Deprecated`
annotations and to fix class references used with static methods.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-26 12:04:13 -07:00
committed by Rob Winch
parent 8866fa6fb0
commit 9e08b51ed3
558 changed files with 1418 additions and 102 deletions

View File

@@ -102,22 +102,27 @@ public class AuthenticationSimpleHttpInvokerRequestExecutorTests {
super(u);
}
@Override
public void connect() {
throw new UnsupportedOperationException("mock not implemented");
}
@Override
public void disconnect() {
throw new UnsupportedOperationException("mock not implemented");
}
@Override
public String getRequestProperty(String key) {
return this.requestProperties.get(key);
}
@Override
public void setRequestProperty(String key, String value) {
this.requestProperties.put(key, value);
}
@Override
public boolean usingProxy() {
throw new UnsupportedOperationException("mock not implemented");
}