Formatting
This commit is contained in:
parent
46c4e9006a
commit
1654234574
1 changed files with 4 additions and 3 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue