KEYCLOAK-7255 Compilation error in perf testsuite

This commit is contained in:
Tomas Kyjovsky 2018-04-27 15:16:19 +02:00 committed by Marek Posolda
parent 1ef5379648
commit a3fb0a5ac5

View file

@ -120,6 +120,11 @@ public class MockHttpFacade implements HttpFacade {
public void setError(LogoutError error) {
throw new UnsupportedOperationException();
}
@Override
public InputStream getInputStream(boolean buffered) {
throw new UnsupportedOperationException();
}
}
static class Response implements HttpFacade.Response {