]> gitweb.factorcode.org Git - factor.git/commitdiff
json.reader doesn't need to USE: math.parser.private anymore since I made float>strin...
authorJoe Groff <arcata@gmail.com>
Sat, 12 Sep 2009 01:29:02 +0000 (20:29 -0500)
committerJoe Groff <arcata@gmail.com>
Sat, 12 Sep 2009 01:29:02 +0000 (20:29 -0500)
basis/json/reader/reader.factor

index 9886e316d7af2231feaa57f8fadcd6f60c803191..bdfeaa3e5126c01001a3dda8c60be3ba2f3a4bfb 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008 Peter Burns, 2009 Philipp Winkler
 ! See http://factorcode.org/license.txt for BSD license.
 USING: arrays assocs combinators io io.streams.string json
-kernel math math.parser math.parser.private prettyprint
+kernel math math.parser prettyprint
 sequences strings vectors ;
 IN: json.reader
 
@@ -100,4 +100,4 @@ DEFER: j-string
 PRIVATE>
     
 : json> ( string -- object )
-    (json-parser>) ;
\ No newline at end of file
+    (json-parser>) ;