vmassol 2002/10/18 13:16:35
Modified: Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher
CactusLaunchConfiguration.java
Log:
Fixed compilation error
Revision Changes Path
1.10 +4 -1
jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/CactusLaunchConfiguration.java
Index: CactusLaunchConfiguration.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/CactusLaunchConfiguration.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- CactusLaunchConfiguration.java 18 Oct 2002 20:15:11 -0000 1.9
+++ CactusLaunchConfiguration.java 18 Oct 2002 20:16:35 -0000 1.10
@@ -258,7 +258,10 @@
private IType getFirstTestType(ILaunchConfiguration theConfiguration,
IJavaProject theJavaProject, IProgressMonitor thePm)
{
- IType testType;
+ // TODO: Upon exception, stop the launch so that this method should
+ // never have to return null.
+
+ IType testType = null;
try
{
--
To unsubscribe, e-mail: <mailto:cactus-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:cactus-dev-help@;jakarta.apache.org>