01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.bytecode;
05:
06: /**
07: * A placeholder for the old DSOClassLoader. This is to allow old programs that say
08: * -Djava.system.class.loader=com.tc.object.bytecode.DSOClassLoader to actually be able to start and print the warning
09: */
10: public class DSOClassLoader extends ClassLoader {
11:
12: public DSOClassLoader(ClassLoader parent) {
13: super (parent);
14: System.out
15: .println("WARNING: The DSOClassLoader should no longer be used as the java system classloader");
16: }
17:
18: }
|