summaryrefslogtreecommitdiff
path: root/ext/net/ops.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/net/ops.rs')
-rw-r--r--ext/net/ops.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/net/ops.rs b/ext/net/ops.rs
index f2735eda9..5248493f4 100644
--- a/ext/net/ops.rs
+++ b/ext/net/ops.rs
@@ -69,7 +69,6 @@ impl From<SocketAddr> for IpAddr {
}
pub(crate) fn accept_err(e: std::io::Error) -> AnyError {
- // FIXME(bartlomieju): compatibility with current JS implementation
if let std::io::ErrorKind::Interrupted = e.kind() {
bad_resource("Listener has been closed")
} else {