mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8200127: Replace collection.stream().forEach() with collection.forEach()
Reviewed-by: alanb
This commit is contained in:
parent
184bbf01dd
commit
2fd847eb0e
3 changed files with 8 additions and 10 deletions
|
@ -593,8 +593,7 @@ public class Proxy implements java.io.Serializable {
|
|||
module.getName(), cn, loader);
|
||||
}
|
||||
if (isDebug("debug")) {
|
||||
interfaces.stream()
|
||||
.forEach(c -> System.out.println(toDetails(c)));
|
||||
interfaces.forEach(c -> System.out.println(toDetails(c)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue