Add dummy implementation of defaultResponseHeaders

This fixes the analyzer redness on the buildbot.

TBR=nweiz@google.com
BUG=

Review URL: https://codereview.chromium.org//460973002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39122 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
sgjesse@google.com
2014-08-12 09:54:24 +00:00
parent 61d8882842
commit 8201bb9956
@@ -27,6 +27,9 @@ class HttpMultiServer extends StreamView<HttpRequest> implements HttpServer {
}
}
HttpHeaders get defaultResponseHeaders =>
throw new UnsupportedError('defaultResponseHeaders not supported');
Duration get idleTimeout => _servers.first.idleTimeout;
set idleTimeout(Duration value) {
for (var server in _servers) {