You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by dj...@apache.org on 2009/06/15 21:59:05 UTC

svn commit: r784954 - /buildr/trunk/lib/buildr/java/tests.rb

Author: djspiewak
Date: Mon Jun 15 19:59:04 2009
New Revision: 784954

URL: http://svn.apache.org/viewvc?rev=784954&view=rev
Log:
Removed the stripping of $ from classnames

Modified:
    buildr/trunk/lib/buildr/java/tests.rb

Modified: buildr/trunk/lib/buildr/java/tests.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/tests.rb?rev=784954&r1=784953&r2=784954&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/tests.rb (original)
+++ buildr/trunk/lib/buildr/java/tests.rb Mon Jun 15 19:59:04 2009
@@ -78,8 +78,6 @@
         info "#{ex.class}: #{ex.message}"
         raise
       end
-      # We strip Scala singleton objects whose .class ends with $
-      result.map { |c| (c =~ /\$$/) ? c[0..(c.size - 2)] : c  }.uniq
     end
     
   end