From 606522cd626c1305b653f4718a434d00a3c7b4aa Mon Sep 17 00:00:00 2001 From: gorhill Date: Sun, 24 Jan 2016 16:09:47 -0500 Subject: [PATCH] minor: removed spurious trailing space --- src/js/uritools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/uritools.js b/src/js/uritools.js index 72390aeef..b5ae5aad8 100644 --- a/src/js/uritools.js +++ b/src/js/uritools.js @@ -377,7 +377,7 @@ var domainCachePrune = function() { while ( i-- ) { hostname = hostnames[i]; domainCache[hostname].dispose(); - delete domainCache[hostname]; + delete domainCache[hostname]; } };