You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TargetInit.java 199B

12345678910
  1. package testproxy;
  2. public class TargetInit {
  3. static {
  4. System.out.println("TargetInit <clinit>");
  5. ProxyTester.testInitFlag = true;
  6. }
  7. public String m() { return "OK"; }
  8. }