]> gitweb.factorcode.org Git - factor.git/commitdiff
help.lint.checks: remove null checks now that scaffold uses objects
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 1 Aug 2022 01:16:29 +0000 (18:16 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 1 Aug 2022 01:16:29 +0000 (18:16 -0700)
basis/help/lint/checks/checks.factor

index 8355c224768f18a78a67d0ac52fe026c62c6480f..ccbd50631f40cc262cfacd06f0991ec850576e2c 100644 (file)
@@ -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 ;