Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2011-03-11 23:32:45 +0000
committerAndrew Gvozdev2011-03-11 23:32:45 +0000
commit0699858e87bbf403c7a745f63356eb74fa8619d4 (patch)
tree27a534ef00ca37817e6c925376ea18d78eeff6c6 /build/org.eclipse.cdt.make.core.tests
parentc2a06027181ab2e14747b7ebf2ef6df6b071a4a9 (diff)
downloadorg.eclipse.cdt-0699858e87bbf403c7a745f63356eb74fa8619d4.tar.gz
org.eclipse.cdt-0699858e87bbf403c7a745f63356eb74fa8619d4.tar.xz
org.eclipse.cdt-0699858e87bbf403c7a745f63356eb74fa8619d4.zip
bug 319512: Missing type arguments compilation warnings
Diffstat (limited to 'build/org.eclipse.cdt.make.core.tests')
-rw-r--r--build/org.eclipse.cdt.make.core.tests/src/org/eclipse/cdt/make/core/tests/AutomatedIntegrationSuite.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.make.core.tests/src/org/eclipse/cdt/make/core/tests/AutomatedIntegrationSuite.java b/build/org.eclipse.cdt.make.core.tests/src/org/eclipse/cdt/make/core/tests/AutomatedIntegrationSuite.java
index 4db869f9903..35b84c29cf1 100644
--- a/build/org.eclipse.cdt.make.core.tests/src/org/eclipse/cdt/make/core/tests/AutomatedIntegrationSuite.java
+++ b/build/org.eclipse.cdt.make.core.tests/src/org/eclipse/cdt/make/core/tests/AutomatedIntegrationSuite.java
@@ -12,6 +12,7 @@
package org.eclipse.cdt.make.core.tests;
import junit.framework.Test;
+import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.cdt.make.builder.tests.StandardBuildTests;
@@ -22,11 +23,11 @@ public class AutomatedIntegrationSuite extends TestSuite {
public AutomatedIntegrationSuite() {
}
- public AutomatedIntegrationSuite(Class theClass, String name) {
+ public AutomatedIntegrationSuite(Class<? extends TestCase> theClass, String name) {
super(theClass, name);
}
- public AutomatedIntegrationSuite(Class theClass) {
+ public AutomatedIntegrationSuite(Class<? extends TestCase> theClass) {
super(theClass);
}

Back to the top