diff options
author | Rich Bolen <rich.bolen@icg360.com> | 2019-08-30 06:03:16 -0400 |
---|---|---|
committer | Rich Bolen <rich.bolen@icg360.com> | 2019-08-30 06:03:16 -0400 |
commit | a90bc27e5886d9cdd359580875e92bf0dd772a1f (patch) | |
tree | d30adaae30833bbd86f19b2d2ff39d0c4bd22991 | |
parent | dd3612498a287f7572cc0ff7b80a47341005030b (diff) | |
download | javassist-a90bc27e5886d9cdd359580875e92bf0dd772a1f.tar.gz javassist-a90bc27e5886d9cdd359580875e92bf0dd772a1f.zip |
Remove unused file
-rw-r--r-- | src/test/test4/Dyn.java | 22 |
1 files changed, 0 insertions, 22 deletions
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); - } -} |