/* */ package NET.worlds.core; /* */ /* */ import java.io.PrintStream; /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public class Recycler /* */ { /* */ public static Object alloc(String classType) /* */ { /* 22 */ return null; /* */ } /* */ /* */ public static void free(Object old) { /* 26 */ String className = old.getClass().getName(); /* 27 */ System.out.println("Classname = " + className); /* */ /* 29 */ if (className.startsWith("[")) { /* 30 */ Object[] oldArr = (Object[])old; /* */ /* */ /* 33 */ System.out.println(" array[" + oldArr.length + "]"); /* */ } /* */ } /* */ } /* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\core\Recycler.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */