Revision: 1705 http://svn.sourceforge.net/vexi/?rev=1705&view=rev Author: mkpg2 Date: 2007-03-05 00:49:19 -0800 (Mon, 05 Mar 2007)
Log Message: ----------- sys.print to use org.ibex.util.Log not System.println Modified Paths: -------------- core/trunk/org.ibex.js/src_dev/org/ibex/js/RunJS.java Modified: core/trunk/org.ibex.js/src_dev/org/ibex/js/RunJS.java =================================================================== --- core/trunk/org.ibex.js/src_dev/org/ibex/js/RunJS.java 2007-03-05 08:48:29 UTC (rev 1704) +++ core/trunk/org.ibex.js/src_dev/org/ibex/js/RunJS.java 2007-03-05 08:49:19 UTC (rev 1705) @@ -327,7 +327,7 @@ if(!JSU.isString(method)) return null; String methName = JSU.toString(method); if("print".equals(methName)) { - System.out.println(JSU.str(args[0])); + JSU.info(args[0]); return null; } if("clone".equals(methName)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Vexi-svn mailing list Vexi-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/vexi-svn