8200127: Replace collection.stream().forEach() with collection.forEach()

Reviewed-by: alanb
This commit is contained in:
Martin Buchholz 2018-04-05 09:34:46 -07:00
parent 184bbf01dd
commit 2fd847eb0e
3 changed files with 8 additions and 10 deletions

View file

@ -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)));
}
}