equal
deleted
inserted
replaced
591 if (isDebug()) { |
591 if (isDebug()) { |
592 System.err.format("PROXY: %s/%s defined by %s%n", |
592 System.err.format("PROXY: %s/%s defined by %s%n", |
593 module.getName(), cn, loader); |
593 module.getName(), cn, loader); |
594 } |
594 } |
595 if (isDebug("debug")) { |
595 if (isDebug("debug")) { |
596 interfaces.stream() |
596 interfaces.forEach(c -> System.out.println(toDetails(c))); |
597 .forEach(c -> System.out.println(toDetails(c))); |
|
598 } |
597 } |
599 } |
598 } |
600 |
599 |
601 private static final String DEBUG = |
600 private static final String DEBUG = |
602 GetPropertyAction.privilegedGetProperty("jdk.proxy.debug", ""); |
601 GetPropertyAction.privilegedGetProperty("jdk.proxy.debug", ""); |