Formatting

This commit is contained in:
Tobe O 2018-04-01 21:40:28 -04:00
parent 46c4e9006a
commit 1654234574

View file

@ -67,12 +67,13 @@ class ResponseCache {
} }
// Save the response. // Save the response.
_cache[req.uri.path] = new _CachedResponse(res.headers, res.buffer.toBytes(), now); _cache[req.uri.path] =
new _CachedResponse(res.headers, res.buffer.toBytes(), now);
}
} }
return true; return true;
} }
}
void setCachedHeaders( void setCachedHeaders(
DateTime modified, RequestContext req, ResponseContext res) { DateTime modified, RequestContext req, ResponseContext res) {