summaryrefslogtreecommitdiff
path: root/NET/worlds/core/Recycler.java
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-03 16:38:41 -0700
committerFuwn <[email protected]>2021-05-03 16:38:41 -0700
commite1e781bb2135ef78592226f1a3eaba4925702f1f (patch)
tree8a5b590463ed413e1c6eabb719130e701b95ca63 /NET/worlds/core/Recycler.java
downloadworlds.jar-main.tar.xz
worlds.jar-main.zip
:star:HEADmain
Diffstat (limited to 'NET/worlds/core/Recycler.java')
-rw-r--r--NET/worlds/core/Recycler.java42
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