test/hotspot/jtreg/runtime/6626217/Loader2.java
changeset 49757 4accd2e82e32
parent 47216 71c04702a3d5
--- a/test/hotspot/jtreg/runtime/6626217/Loader2.java	Thu Apr 12 09:03:46 2018 -0400
+++ b/test/hotspot/jtreg/runtime/6626217/Loader2.java	Wed Apr 11 14:49:06 2018 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -36,7 +36,7 @@
     print("Fetching the implementation of "+name);
     int old = _recur;
     try {
-      FileInputStream fi = new FileInputStream(name+".impl2");
+      FileInputStream fi = new FileInputStream(name+".class");
       byte result[] = new byte[fi.available()];
       fi.read(result);