< prev index next >

src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/resources/ResourceLocator.java

Print this page

        

*** 21,30 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.jpackage.internal.resources; ! public class ResourceLocator { } --- 21,38 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.incubator.jpackage.internal.resources; ! /* ! * ResourceLocator ! * This empty class is the only class in this package. Otherwise the ! * package consists only of resources. ResourceLocator is needed in order ! * to call getResourceAsStream() to get those resources. ! */ + public class ResourceLocator { + public ResourceLocator() { + } }
< prev index next >