remove outdated codes (#17140)

* remove unnecessary when statement

* remove outdated codes
This commit is contained in:
flywind
2021-02-22 02:40:11 -06:00
committed by GitHub
parent 32bf10126c
commit f26c25737c
2 changed files with 0 additions and 2 deletions

View File

@@ -326,7 +326,6 @@ func distribute*[T](s: seq[T], num: Positive, spread = true): seq[seq[T]] =
if num < 2:
result = @[s]
return
let num = int(num) # XXX probably only needed because of .. bug
# Create the result and calculate the stride size and the remainder if any.
result = newSeq[seq[T]](num)

View File

@@ -300,7 +300,6 @@ proc raiseFormatException(s: string) =
proc getValue(t: StringTableRef, flags: set[FormatFlag], key: string): string =
if hasKey(t, key): return t.getOrDefault(key)
# hm difficult: assume safety in taint mode here. XXX This is dangerous!
when defined(js) or defined(nimscript) or defined(Standalone):
result = ""
else: