From 41b48aa5d22316254f5a89c937de6c6fbdaf760a Mon Sep 17 00:00:00 2001 From: jnthn Date: Sat, 18 Feb 2012 13:56:00 +0100 Subject: [PATCH] Remove debugging code. --- src/Perl6/World.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Perl6/World.pm b/src/Perl6/World.pm index 741e893eabe..b310d7cb7d2 100644 --- a/src/Perl6/World.pm +++ b/src/Perl6/World.pm @@ -1514,10 +1514,9 @@ class Perl6::World is HLL::World { method apply_trait($trait_sub_name, *@pos_args, *%named_args) { # Locate the trait sub to apply. my $trait_sub := $*W.find_symbol([$trait_sub_name]); - + # Call it right away. my $ret := $trait_sub(|@pos_args, |%named_args); - pir::say(pir::typeof__SP($ret)); if pir::can__IPs($ret, 'sink') { $ret.sink } # Serialize call to it.