< prev index next >

src/demo/share/java2d/J2DBench/src/j2dbench/ResultSet.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  *

@@ -49,11 +49,11 @@
 public class ResultSet {
     static Hashtable preferprops;
     static Hashtable ignoreprops;
 
     // Preferred props - will be listed even if undefined
-    static String preferredkeys[] = {
+    static String[] preferredkeys = {
         "java.version",
         "java.runtime.version",
         "java.class.version",
         "java.vm.version",
         "java.vm.name",

@@ -67,11 +67,11 @@
         "sun.cpu.endian",
         "sun.cpu.isalist",
     };
 
     // Ignored props - will not be copied to results file
-    static String ignoredkeys[] = {
+    static String[] ignoredkeys = {
         "user.dir",
         "user.home",
         "user.timezone",
         "path.separator",
         "line.separator",
< prev index next >