changeset 11313:b7bfa2353056

Remove test file.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 16 Aug 2013 01:12:34 +0200
parents f0c8303cf88e
children dc14bcf752ea
files Test.java
diffstat 1 files changed, 0 insertions(+), 30 deletions(-) [+]
line wrap: on
line diff
--- a/Test.java	Fri Aug 16 01:09:03 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-public class Test {
-   public static void main(String[] args) {
-      Test t = new Test();
-      Test2 t2 = new Test2();
-      for (int i = 0; i < 5000; ++i) {
-	      test2(t2);
-      }
-      for (int i = 0; i < 100000; ++i) {
-	      test(t);
-      }
-   }
-
-   public static int test(Object t) {
-      if (t instanceof Test) {
-          test2(t);
-      }
-      return 3;
-   }
-
-   public static int test2(Object t) {
-         if (t instanceof Test) {
-             return 1;
-         }
-         return 2;
-   }
-}
-
-
-class Test2 extends Test {
-}