view mxtool/ClasspathDump.java @ 15302:b3e4b32cb9f5

Remove deprecated isCompressed* checks from *HotSpotLIRGenerator.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 22 Apr 2014 19:45:52 +0200
parents a6bd486b1b44
children
line wrap: on
line source

public class ClasspathDump {
    public static void main(String[] args) {
        System.out.print(System.getProperty("sun.boot.class.path"));
        System.out.print("|");
        System.out.print(System.getProperty("java.ext.dirs"));
        System.out.print("|");
        System.out.print(System.getProperty("java.endorsed.dirs"));
    }
}