You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
660 B
43 lines
660 B
/*
|
|
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package java.lang;
|
|
|
|
import java.io.File;
|
|
|
|
class ClassLoaderHelper {
|
|
|
|
private ClassLoaderHelper() {}
|
|
|
|
/**
|
|
* Returns an alternate path name for the given file
|
|
* such that if the original pathname did not exist, then the
|
|
* file may be located at the alternate location.
|
|
* For most platforms, this behavior is not supported and returns null.
|
|
*/
|
|
static File mapAlternativeName(File lib) {
|
|
return null;
|
|
}
|
|
}
|