|
From: <caw...@us...> - 2007-06-20 21:10:47
|
Revision: 2655
http://svn.sourceforge.net/rubyeclipse/?rev=2655&view=rev
Author: cawilliams
Date: 2007-06-20 14:10:46 -0700 (Wed, 20 Jun 2007)
Log Message:
-----------
clean up some warnings
Modified Paths:
--------------
trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/internal/testunit/ui/OpenEditorAction.java
Modified: trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/internal/testunit/ui/OpenEditorAction.java
===================================================================
--- trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/internal/testunit/ui/OpenEditorAction.java 2007-06-20 21:09:40 UTC (rev 2654)
+++ trunk/org.rubypeople.rdt.testunit/src/org/rubypeople/rdt/internal/testunit/ui/OpenEditorAction.java 2007-06-20 21:10:46 UTC (rev 2655)
@@ -87,10 +87,10 @@
protected abstract void reveal(ITextEditor editor);
protected IType findType(IRubyProject project, String className) throws RubyModelException {
- return internalFindType(project, className, new HashSet());
+ return internalFindType(project, className, new HashSet<IRubyProject>());
}
- private IType internalFindType(IRubyProject project, String className, Set/*<IRubyProject>*/ visitedProjects) throws RubyModelException {
+ private IType internalFindType(IRubyProject project, String className, Set<IRubyProject> visitedProjects) throws RubyModelException {
if (visitedProjects.contains(project))
return null;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|