From d51efd07ac580991011e8dbebef5179f9c6f5b66 Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Sun, 11 Jan 2015 14:33:08 -0600 Subject: [PATCH] net: remove TODO for moving isIP to dns It is not really DNS-specific so keeping it in net makes more sense. PR-URL: https://github.com/iojs/io.js/pull/286 Reviewed-By: Ben Noordhuis --- lib/net.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/net.js b/lib/net.js index 383269c76f6a26..0b61f7d3c8b2be 100644 --- a/lib/net.js +++ b/lib/net.js @@ -1442,8 +1442,6 @@ Server.prototype.unref = function() { }; -// TODO: isIP should be moved to the DNS code. Putting it here now because -// this is what the legacy system did. exports.isIP = cares.isIP;