Index: sdk/lib/io/http_session.dart |
diff --git a/sdk/lib/io/http_session.dart b/sdk/lib/io/http_session.dart |
index 159a54d44c92e412c18ec0cb91c0828344679388..90075a5377d7a0efeb87bb39eefa482ed405faf3 100644 |
--- a/sdk/lib/io/http_session.dart |
+++ b/sdk/lib/io/http_session.dart |
@@ -53,8 +53,8 @@ class _HttpSession implements HttpSession { |
putIfAbsent(key, ifAbsent) => _data.putIfAbsent(key, ifAbsent); |
addAll(Map other) => _data.addAll(other); |
remove(key) => _data.remove(key); |
- void clear() => _data.clear(); |
- void forEach(void f(key, value)) => _data.forEach(f); |
+ void clear() { _data.clear(); } |
+ void forEach(void f(key, value)) { _data.forEach(f); } |
Iterable get keys => _data.keys; |
Iterable get values => _data.values; |
int get length => _data.length; |
@@ -104,7 +104,7 @@ class _HttpSessionManager { |
_startTimer(); |
} |
- void close() => _stopTimer(); |
+ void close() { _stopTimer(); } |
void _bumpToEnd(_HttpSession session) { |
_removeFromTimeoutQueue(session); |