aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java')
-rw-r--r--container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java b/container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java
index 4477b7319b8..4d207d7afaf 100644
--- a/container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java
+++ b/container-core/src/main/java/com/yahoo/container/jdisc/EmptyResponse.java
@@ -15,6 +15,11 @@ public class EmptyResponse extends HttpResponse {
super(status);
}
+ public EmptyResponse() {
+ this(200);
+ }
+
+ @Override
public void render(OutputStream outputStream) throws IOException {
// NOP
}