|
|
|
@ -660,7 +660,6 @@ class DefaultServerRequest implements ServerRequest { |
|
|
|
return this.headers.headerNames(); |
|
|
|
return this.headers.headerNames(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Unsupported
|
|
|
|
// Unsupported
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
@ -713,7 +712,6 @@ class DefaultServerRequest implements ServerRequest { |
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String getCharacterEncoding() { |
|
|
|
public String getCharacterEncoding() { |
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
@ -793,6 +791,11 @@ class DefaultServerRequest implements ServerRequest { |
|
|
|
public Locale getLocale() { |
|
|
|
public Locale getLocale() { |
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @Override - on Servlet 6.2
|
|
|
|
|
|
|
|
public void sendEarlyHints() { |
|
|
|
|
|
|
|
throw new UnsupportedOperationException(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|