Index: dart/sdk/lib/io/socket.dart |
diff --git a/dart/sdk/lib/io/socket.dart b/dart/sdk/lib/io/socket.dart |
index 7b4009dd5590f421ca6c17f1f6fd7ead0f38bc7a..b95163c5567765976e6eea3c6c7635e37e82c0f8 100644 |
--- a/dart/sdk/lib/io/socket.dart |
+++ b/dart/sdk/lib/io/socket.dart |
@@ -227,8 +227,7 @@ abstract class RawServerSocket implements Stream<RawSocket> { |
external static Future<RawServerSocket> bind(address, |
int port, |
{int backlog: 0, |
- bool v6Only: false, |
- bool shared: false}); |
+ bool v6Only: false}); |
/** |
* Returns the port used by this socket. |
@@ -319,8 +318,7 @@ abstract class ServerSocket implements Stream<Socket> { |
external static Future<ServerSocket> bind(address, |
int port, |
{int backlog: 0, |
- bool v6Only: false, |
- bool shared: false}); |
+ bool v6Only: false}); |
/** |
* Returns the port used by this socket. |