diff options
Diffstat (limited to 'NET/worlds/core/Recycler.java')
| -rw-r--r-- | NET/worlds/core/Recycler.java | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/NET/worlds/core/Recycler.java b/NET/worlds/core/Recycler.java new file mode 100644 index 0000000..defe829 --- /dev/null +++ b/NET/worlds/core/Recycler.java @@ -0,0 +1,42 @@ +/* */ 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 + */
\ No newline at end of file |