You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2014/06/13 09:08:39 UTC

svn commit: r1602332 - /db/derby/code/branches/10.10/java/testing/org/apache/derbyTesting/functionTests/harness/jdk19.java

Author: kahatlen
Date: Fri Jun 13 07:08:39 2014
New Revision: 1602332

URL: http://svn.apache.org/r1602332
Log:
DERBY-6612: Add code to harness tests to allow running under JDK9 VMs

Remove the use of generics to fix broken build on 10.10.

Modified:
    db/derby/code/branches/10.10/java/testing/org/apache/derbyTesting/functionTests/harness/jdk19.java

Modified: db/derby/code/branches/10.10/java/testing/org/apache/derbyTesting/functionTests/harness/jdk19.java
URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.10/java/testing/org/apache/derbyTesting/functionTests/harness/jdk19.java?rev=1602332&r1=1602331&r2=1602332&view=diff
==============================================================================
--- db/derby/code/branches/10.10/java/testing/org/apache/derbyTesting/functionTests/harness/jdk19.java (original)
+++ db/derby/code/branches/10.10/java/testing/org/apache/derbyTesting/functionTests/harness/jdk19.java Fri Jun 13 07:08:39 2014
@@ -30,25 +30,25 @@ public class jdk19 extends jvm {
     public String getName(){return "jdk19";}
     public jdk19(boolean noasyncgc, boolean verbosegc, boolean noclassgc,
         long ss, long oss, long ms, long mx, String classpath, String prof,
-        boolean verify, boolean noverify, boolean nojit, Vector<String> D) {
+        boolean verify, boolean noverify, boolean nojit, Vector D) {
         super(noasyncgc,verbosegc,noclassgc,ss,oss,ms,mx,classpath,prof,
             verify,noverify,nojit,D);
     }
 
-    public jdk19(String classpath, Vector<String> D) {
+    public jdk19(String classpath, Vector D) {
         super(classpath,D);
     }
 
-    public jdk19(long ms, long mx, String classpath, Vector<String> D) {
+    public jdk19(long ms, long mx, String classpath, Vector D) {
         super(ms,mx,classpath,D);
     }
 
     public jdk19() { }
 
 
-    public Vector<String> getCommandLine() {
+    public Vector getCommandLine() {
         StringBuffer sb = new StringBuffer();
-        Vector<String> v = super.getCommandLine();
+        Vector v = super.getCommandLine();
         appendOtherFlags(sb);
         String s = sb.toString();
         StringTokenizer st = new StringTokenizer(s);