|
From: <caw...@us...> - 2007-04-04 16:22:10
|
Revision: 2279
http://svn.sourceforge.net/rubyeclipse/?rev=2279&view=rev
Author: cawilliams
Date: 2007-04-04 09:22:09 -0700 (Wed, 04 Apr 2007)
Log Message:
-----------
ignore syntax errors thrown by parser
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/hyperlinks/RubyHyperLinkDetector.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/hyperlinks/RubyHyperLinkDetector.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/hyperlinks/RubyHyperLinkDetector.java 2007-04-04 16:12:48 UTC (rev 2278)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/hyperlinks/RubyHyperLinkDetector.java 2007-04-04 16:22:09 UTC (rev 2279)
@@ -100,12 +100,10 @@
}
}
} catch (RubyModelException e) {
- RubyPlugin.log(e);
+ //ignore
}
}
-
return null;
-
}
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|