diff --git a/basis/json/writer/writer.factor b/basis/json/writer/writer.factor index 79c7542dbb..e374919039 100644 --- a/basis/json/writer/writer.factor +++ b/basis/json/writer/writer.factor @@ -12,9 +12,6 @@ GENERIC: json-print ( obj -- ) #! Returns a string representing the factor object in JSON format [ json-print ] with-string-writer ; -M: t json-print ( f -- ) - drop "true" write ; - M: f json-print ( f -- ) drop "false" write ;