|
From: <caw...@us...> - 2006-12-06 15:01:12
|
Revision: 1678
http://svn.sourceforge.net/rubyeclipse/?rev=1678&view=rev
Author: cawilliams
Date: 2006-12-06 07:01:06 -0800 (Wed, 06 Dec 2006)
Log Message:
-----------
don't print to system err about catching syntax error, use RubyCore.log
Modified Paths:
--------------
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/builder/MassIndexUpdater.java
Modified: trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/builder/MassIndexUpdater.java
===================================================================
--- trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/builder/MassIndexUpdater.java 2006-12-01 05:09:13 UTC (rev 1677)
+++ trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/builder/MassIndexUpdater.java 2006-12-06 15:01:06 UTC (rev 1678)
@@ -63,7 +63,7 @@
} catch (CoreException e) {
RubyCore.log(e);
} catch (SyntaxException se) {
- System.err.println("Explicit catch of SyntaxError in MassIndexUpdater (jpm)");
+ RubyCore.log("Explicit catch of SyntaxError in MassIndexUpdater (jpm)");
RubyCore.log(se);
} catch (Exception ex) {
// e.g: the parser currently throws a ClassCastExcpetion when parsing xmldecl.rb
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|