aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Shirley-Quirk2020-08-04 21:52:42 +0000
committerBenjamin Shirley-Quirk2020-08-04 21:52:42 +0000
commit8ca6a6ae081fa6381e79b43d1363e5e5ce00c9ba (patch)
tree1885b9a46f54cdf85e25f2357b3f2992703ead90
parent4fad58d7be80d90058cf627a2f9bccbd6016e72b (diff)
removed deprecated []= warnings
-rw-r--r--src/common.nim6
-rw-r--r--src/config.nim4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/common.nim b/src/common.nim
index a7d59c4..6b15b4c 100644
--- a/src/common.nim
+++ b/src/common.nim
@@ -242,10 +242,10 @@ proc queryUnrequired*(handle: ptr AlpmHandle, withOptional: bool, withoutOptiona
installed.add(pkg.toPackageReference)
if pkg.reason == AlpmReason.explicit:
explicit &= $pkg.name
- dependsTable.add($pkg.name,
- depends.map(x => (x, false)) + optional.map(x => (x, true)))
+ dependsTable[$pkg.name]=
+ depends.map(x => (x, false)) + optional.map(x => (x, true))
if provides.len > 0:
- alternatives.add($pkg.name, provides)
+ alternatives[$pkg.name]= provides
(installed, explicit.toHashSet + assumeExplicit, dependsTable, alternatives)
diff --git a/src/config.nim b/src/config.nim
index e8be1fc..1afa89a 100644
--- a/src/config.nim
+++ b/src/config.nim
@@ -81,9 +81,9 @@ proc readConfigFile*(configFile: string):
table[currentCategory] = category
elif currentCategory.len > 0:
if line.match(re"(\w+)\ *=\ *(.*)", matches):
- category[].add(matches[0], matches[1])
+ category[matches[0]]= matches[1]
else:
- category[].add(line, "")
+ category[line]=""
false
except EOFError: