From ea3e32c2249ee010eab986850ce52c50fdf4c46e Mon Sep 17 00:00:00 2001 From: c-blake Date: Sun, 6 Jan 2019 18:42:49 -0500 Subject: [PATCH] Remove totally unneeded import of hashes. (#10221) --- lib/pure/parsecfg.nim | 2 +- lib/pure/parsesql.nim | 2 +- lib/pure/parsexml.nim | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pure/parsecfg.nim b/lib/pure/parsecfg.nim index b991dd57f1..106d59017e 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 20f02e8156..f0961829bc 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 0967f79830..953c5cdde2 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 ``
`` as ``

``