|
From: <caw...@us...> - 2007-07-19 15:39:35
|
Revision: 2795
http://svn.sourceforge.net/rubyeclipse/?rev=2795&view=rev
Author: cawilliams
Date: 2007-07-19 08:39:34 -0700 (Thu, 19 Jul 2007)
Log Message:
-----------
set parent to parent of first type in array of types
Modified Paths:
--------------
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/LogicalType.java
Modified: trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/LogicalType.java
===================================================================
--- trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/LogicalType.java 2007-07-18 21:48:08 UTC (rev 2794)
+++ trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/LogicalType.java 2007-07-19 15:39:34 UTC (rev 2795)
@@ -12,7 +12,7 @@
private IType[] types;
public LogicalType(IType[] types) {
- super(null, types[0].getElementName());
+ super((RubyElement)types[0].getParent(), types[0].getElementName());
this.types = types;
}
@@ -35,5 +35,5 @@
}
return false;
}
-
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|