Christopher Williams wrote:

Markus and all,

What are the fixes or other steps that everyone thinks we need to complete before releasing a true 0.7.0 release? The Radrails guys have been patiently waiting for the release to do their own. I think we should push to do what we can to get it out for them - they've been waiting a long time.

I think the useless .. warning is crucial despite the configurable squiggels. Therefore I've created a new jruby.jar from jruby HEAD. Thanks to the latest changes from Thomas this fixes bug #67. In order to "fix" the useless warning I've applied the crude patch below. Thomas, do you think there is a chance to add an ID to warnings for the next release so that we can add preference page for filtering warnings?

Thomas, do you see any obstacles with HEAD of jruby? I've got one failing test (testDigest) and one error (testRubyRequire) when running MainTestSuite.

Please check 0.7.0.601152327NGT, if it is fine I will release 0.7.0.

Markus


Index: UselessStatementVisitor.java
===================================================================
RCS file: /cvsroot/jruby/jruby/src/org/jruby/ast/visitor/UselessStatementVisitor.java,v
retrieving revision 1.13
diff -u -r1.13 UselessStatementVisitor.java
--- UselessStatementVisitor.java    4 Nov 2005 16:12:49 -0000    1.13
+++ UselessStatementVisitor.java    15 Jan 2006 22:07:30 -0000
@@ -78,8 +78,8 @@
    }

    private void handleUselessWarn(Node node, String useless) {
-        warnings.warn(node.getPosition(), "Useless use of " + useless
-                + " in void context.");
+        //warnings.warn(node.getPosition(), "Useless use of " + useless
+        //        + " in void context.");
    }

    /**





-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development

Reply via email to