summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorc-blake <c-blake@users.noreply.github.com>2019-01-06 18:42:49 -0500
committerAndreas Rumpf <rumpf_a@web.de>2019-01-07 00:42:49 +0100
commitea3e32c2249ee010eab986850ce52c50fdf4c46e (patch)
tree464676318d75e699997d522407b307a84ae63d24 /lib/pure
parent2fa35126b09e3487fbb82328238e59b9a4dd6d4c (diff)
downloadNim-ea3e32c2249ee010eab986850ce52c50fdf4c46e.tar.gz
Remove totally unneeded import of hashes. (#10221)
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/parsecfg.nim2
-rw-r--r--lib/pure/parsesql.nim2
-rw-r--r--lib/pure/parsexml.nim2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/parsecfg.nim b/lib/pure/parsecfg.nim
index b991dd57f..106d59017 100644
--- a/lib/pure/parsecfg.nim
+++ b/lib/pure/parsecfg.nim
@@ -111,7 +111,7 @@
 ##     dict.writeConfig("config.ini")
 
 import
-  hashes, strutils, lexbase, streams, tables
+  strutils, lexbase, streams, tables
 
 include "system/inclrtl"
 
diff --git a/lib/pure/parsesql.nim b/lib/pure/parsesql.nim
index 20f02e815..f0961829b 100644
--- a/lib/pure/parsesql.nim
+++ b/lib/pure/parsesql.nim
@@ -11,7 +11,7 @@
 ## parser. It parses PostgreSQL syntax and the SQL ANSI standard.
 
 import
-  hashes, strutils, lexbase
+  strutils, lexbase
 
 # ------------------- scanner -------------------------------------------------
 
diff --git a/lib/pure/parsexml.nim b/lib/pure/parsexml.nim
index 0967f7983..953c5cdde 100644
--- a/lib/pure/parsexml.nim
+++ b/lib/pure/parsexml.nim
@@ -147,7 +147,7 @@ an HTML document contains.
 ]##
 
 import
-  hashes, strutils, lexbase, streams, unicode
+  strutils, lexbase, streams, unicode
 
 # the parser treats ``<br />`` as ``<br></br>``