[macruby-changes] [2187] MacRuby/branches/experimental/ext/libyaml/rubyext.c

source_changes at macosforge.org source_changes at macosforge.org
Mon Aug 3 12:35:17 PDT 2009


Revision: 2187
          http://trac.macosforge.org/projects/ruby/changeset/2187
Author:   pthomson at apple.com
Date:     2009-08-03 12:35:17 -0700 (Mon, 03 Aug 2009)
Log Message:
-----------
Removed some debug messages.

Modified Paths:
--------------
    MacRuby/branches/experimental/ext/libyaml/rubyext.c

Modified: MacRuby/branches/experimental/ext/libyaml/rubyext.c
===================================================================
--- MacRuby/branches/experimental/ext/libyaml/rubyext.c	2009-08-03 19:31:31 UTC (rev 2186)
+++ MacRuby/branches/experimental/ext/libyaml/rubyext.c	2009-08-03 19:35:17 UTC (rev 2187)
@@ -423,13 +423,11 @@
 	{
 		case YAML_SCALAR_NODE:
 		{
-			printf("Tag is %s\n", node->tag);
 			if (node->data.scalar.style == YAML_PLAIN_SCALAR_STYLE)
 			{
 				rb_yaml_guess_type_of_plain_node(node);
 				tag = rb_str_new2((const char*)node->tag);
 				handler = rb_hash_lookup(tags, tag);
-				printf("Tag is now %s\n", node->tag);
 			}
 			VALUE scalarval = rb_str_new((const char*)node->data.scalar.value, node->data.scalar.length);
 			if (rb_respond_to(handler, rb_intern("call")))
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090803/d31df422/attachment.html>


More information about the macruby-changes mailing list