view mxtool/ClasspathDump.java @ 21323:3570b7d1a6f9

LinearScan: create factory methods for subr- phases.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 12 May 2015 11:04:25 +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"));
    }
}