1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

remove printf()

This commit is contained in:
Charles Lowell 2010-02-11 17:36:44 -06:00
parent a9e1d57fc1
commit c4b1c79448

View file

@ -118,7 +118,7 @@ Handle<Value> RacerRubyNamedPropertySetter(Local<String> property, Local<Value>
* The result is true if the property exists and false otherwise. * The result is true if the property exists and false otherwise.
*/ */
Handle<Boolean> RacerRubyNamedPropertyQuery(Local<String> property, const AccessorInfo& info) { Handle<Boolean> RacerRubyNamedPropertyQuery(Local<String> property, const AccessorInfo& info) {
printf("Query: '%s'<br/>", *String::AsciiValue(property)); // printf("Query: '%s'<br/>", *String::AsciiValue(property));
if (property->Length() == 0) { if (property->Length() == 0) {
return False(); return False();
} }