Index: java/lang/ClassLoader.java
===================================================================
RCS file: /sources/classpath/classpath/java/lang/ClassLoader.java,v
retrieving revision 1.62
diff -r1.62 ClassLoader.java
220c220
<   boolean defaultAssertionStatus = VMClassLoader.defaultAssertionStatus();
---
>   boolean defaultAssertionStatus = VMClassLoader.defaultUserAssertionStatus();
Index: vm/reference/java/lang/VMClassLoader.java
===================================================================
RCS file: /sources/classpath/classpath/vm/reference/java/lang/VMClassLoader.java,v
retrieving revision 1.39
diff -r1.39 VMClassLoader.java
336,337c336
<    * The system default for assertion status. This is used for all system
<    * classes (those with a null ClassLoader), as well as the initial value for
---
>    * The system default for assertion status. This is as the initial value for
342c341,354
<    * @return the system-wide default assertion status
---
>    * @return the system-wide default assertion status for user classes
>    */
>   static final boolean defaultUserAssertionStatus()
>   {
>     return true;
>   }
> 
>   /**
>    * The system default for assertion status. This is used for all system
>    * classes (those with a null ClassLoader).
>    *
>    * XXX - Not implemented yet; this requires native help.
>    *
>    * @return the system-wide default assertion status for system classes
