Skip to content

Commit

Permalink
Rename OracleReflection to Java6Reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
centic9 committed Nov 12, 2015
1 parent 2015c7e commit 5eecb18
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file added src/test/antunit/Java6Reflection.class
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
import java.lang.reflect.Method;
import java.util.*;

class OracleReflection {
class Java6Reflection {
static Field test() throws Exception {
Class c = OracleReflection.class;
Class c = Java6Reflection.class;
Field f = c.getDeclaredField("field1");
f.setAccessible(true);

Method m = c.getDeclaredMethod("testMethod");
m.setAccessible(true);
m.invoke(new OracleReflection());
m.invoke(new Java6Reflection());

return f;
}
Expand Down
Binary file removed src/test/antunit/OracleReflection.class
Binary file not shown.
File renamed without changes.

0 comments on commit 5eecb18

Please sign in to comment.