/[classpath]/classpath/vm/reference/java/lang/VMClassLoader.java
ViewVC logotype

Diff of /classpath/vm/reference/java/lang/VMClassLoader.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.14 by jewel, Wed Dec 18 10:28:29 2002 UTC revision 1.15 by mark, Sun Mar 16 13:57:49 2003 UTC
# Line 117  final class VMClassLoader Line 117  final class VMClassLoader
117     *     *
118     * @param name the class name to load     * @param name the class name to load
119     * @param resolve whether to resolve it     * @param resolve whether to resolve it
120     * @return the class, loaded by the bootstrap classloader     * @return the class, loaded by the bootstrap classloader or null
121       * if the class wasn't found. Returning null is equivalent to throwing
122       * a ClassNotFoundException (but a possible performance optimization).
123     */     */
124    static final Class loadClass(String name, boolean resolve)    static final Class loadClass(String name, boolean resolve)
125      throws ClassNotFoundException      throws ClassNotFoundException
126    {    {
127      throw new ClassNotFoundException(name);      return null;
128    }    }
129    
130    /**    /**

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26