diff src/share/vm/runtime/arguments.cpp @ 8105:94478a033036

Merge
author sspitsyn
date Fri, 22 Feb 2013 10:16:51 -0800
parents 1ba18258caa4 1b0dc9f87e75
children 5fc51c1ecdeb 11d5942ef9c7 fad90b102190 209f8ba5020b
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Thu Feb 21 11:39:24 2013 -0800
+++ b/src/share/vm/runtime/arguments.cpp	Fri Feb 22 10:16:51 2013 -0800
@@ -2181,19 +2181,6 @@
     FREE_C_HEAP_ARRAY(char, altclasses_path, mtInternal);
   }
 
-  if (WhiteBoxAPI) {
-    // Append wb.jar to bootclasspath if enabled
-    const char* wb_jar = "wb.jar";
-    size_t wb_path_len = strlen(get_meta_index_dir()) + 1 +
-                         strlen(wb_jar);
-    char* wb_path = NEW_C_HEAP_ARRAY(char, wb_path_len, mtInternal);
-    strcpy(wb_path, get_meta_index_dir());
-    strcat(wb_path, wb_jar);
-    scp.add_suffix(wb_path);
-    scp_assembly_required = true;
-    FREE_C_HEAP_ARRAY(char, wb_path, mtInternal);
-  }
-
   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
   if (result != JNI_OK) {