IDEA-122129 agentmain method is highlighted as unused

This commit is contained in:
Anna Kozlova
2014-03-14 20:43:59 +01:00
parent 3704bfc631
commit c464f19d9c
6 changed files with 31 additions and 2 deletions
@@ -0,0 +1,11 @@
package java.lang.instrument;
class Instrumentation {}
class Foo {
public void agentmain(String args, Instrumentation i) {
System.out.println(args);
System.out.println(i);
}
}