From: Rich Bolen Date: Fri, 30 Aug 2019 10:03:16 +0000 (-0400) Subject: Remove unused file X-Git-Tag: rel_3_26_0_ga~9^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F272%2Fhead;p=javassist.git Remove unused file --- diff --git a/src/test/test4/Dyn.java b/src/test/test4/Dyn.java deleted file mode 100644 index 83418d47..00000000 --- a/src/test/test4/Dyn.java +++ /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); - } -}