From: John Benediktsson Date: Mon, 1 Aug 2022 01:16:29 +0000 (-0700) Subject: help.lint.checks: remove null checks now that scaffold uses objects X-Git-Tag: 0.99~1253 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=4976574dafe3c69aa97d8e6cab42f1453114a6a9 help.lint.checks: remove null checks now that scaffold uses objects --- diff --git a/basis/help/lint/checks/checks.factor b/basis/help/lint/checks/checks.factor index 8355c22476..ccbd50631f 100644 --- a/basis/help/lint/checks/checks.factor +++ b/basis/help/lint/checks/checks.factor @@ -120,11 +120,6 @@ SYMBOL: vocab-articles simple-lint-error ] unless ; -: check-nulls ( element -- ) - \ $values swap elements - null swap deep-member? - [ "$values should not contain null" simple-lint-error ] when ; - : check-see-also ( element -- ) \ $see-also swap elements [ rest all-unique? ] all? [ "$see-also are not unique" simple-lint-error ] unless ;