commit 06e2a9bd4200cf11021f13d91d26139279775f3d
parent a335a556ee379d6a3237a6d81aa838522fa9cc66
Author: Drew DeVault <sir@cmpwn.com>
Date: Fri, 28 Jan 2022 10:06:14 +0100
mime: remove leftover assertion from debugging
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/mime/database.ha b/mime/database.ha
@@ -38,7 +38,6 @@ export fn register(mime: mimetype...) void = {
const hash = fnv::string(item.exts[i]);
let bucket = &exttable[hash % len(exttable)];
append(bucket, item);
- assert(len(bucket) > 0);
};
};
};