|
From: <caw...@us...> - 2007-05-14 13:32:31
|
Revision: 2472
http://svn.sourceforge.net/rubyeclipse/?rev=2472&view=rev
Author: cawilliams
Date: 2007-05-14 06:32:09 -0700 (Mon, 14 May 2007)
Log Message:
-----------
if it's a constant, don't add element from ruby script, just add class names and constants
Modified Paths:
--------------
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/codeassist/CompletionEngine.java
Modified: trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/codeassist/CompletionEngine.java
===================================================================
--- trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/codeassist/CompletionEngine.java 2007-05-14 13:26:38 UTC (rev 2471)
+++ trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/codeassist/CompletionEngine.java 2007-05-14 13:32:09 UTC (rev 2472)
@@ -88,6 +88,7 @@
if (fContext.isConstant()) { // type or constant
suggestTypeNames();
suggestConstantNames();
+ return;
}
if (fContext.isExplicitMethodInvokation()) {
ITypeInferrer inferrer = new DefaultTypeInferrer();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|