annotate mxtool/ClasspathDump.java @ 21375:fef56da8474e

Relax assertion to allow MethodIdHolders that have pre-assigned ids
author Christian Wimmer <christian.wimmer@oracle.com>
date Thu, 14 May 2015 15:59:14 -0700
parents a6bd486b1b44
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14914
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
1 public class ClasspathDump {
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
2 public static void main(String[] args) {
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
3 System.out.print(System.getProperty("sun.boot.class.path"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
4 System.out.print("|");
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
5 System.out.print(System.getProperty("java.ext.dirs"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
6 System.out.print("|");
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
7 System.out.print(System.getProperty("java.endorsed.dirs"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
8 }
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
9 }