]> source.dussan.org Git - javassist.git/commitdiff
Remove unused file 272/head
authorRich Bolen <rich.bolen@icg360.com>
Fri, 30 Aug 2019 10:03:16 +0000 (06:03 -0400)
committerRich Bolen <rich.bolen@icg360.com>
Fri, 30 Aug 2019 10:03:16 +0000 (06:03 -0400)
src/test/test4/Dyn.java [deleted file]

diff --git a/src/test/test4/Dyn.java b/src/test/test4/Dyn.java
deleted file mode 100644 (file)
index 83418d4..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package test4;
-
-public class Dyn {
-
-  public static int test9(int i, String s) {
-    return 9;
-  }
-
-  public int test8(int i, String s) {
-    return 8;
-  }
-
-  public static Integer boot(String numberString)
-      throws NoSuchMethodException, IllegalAccessException {
-    return Integer.valueOf(numberString);
-  }
-
-  public Integer boot2(String numberString)
-      throws NoSuchMethodException, IllegalAccessException {
-    return Integer.valueOf(numberString);
-  }
-}