|
From: <caw...@us...> - 2007-08-15 20:57:24
|
Revision: 2989
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=2989&view=rev
Author: cawilliams
Date: 2007-08-15 13:57:22 -0700 (Wed, 15 Aug 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyCompletionProposal.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyCompletionProposal.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyCompletionProposal.java 2007-08-15 19:33:05 UTC (rev 2988)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyCompletionProposal.java 2007-08-15 20:57:22 UTC (rev 2989)
@@ -69,17 +69,6 @@
*/
protected boolean isValidPrefix(String prefix) {
String word= getDisplayString();
- if (isInRubydoc()) {
- int idx = word.indexOf("{@link "); //$NON-NLS-1$
- if (idx==0) {
- word = word.substring(7);
- } else {
- idx = word.indexOf("{@value "); //$NON-NLS-1$
- if (idx==0) {
- word = word.substring(8);
- }
- }
- }
return isPrefix(prefix, word);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|