#653 - Polishing.

Consistently add // at manually separated stream steps.
This commit is contained in:
Oliver Gierke
2017-10-16 17:57:18 +02:00
parent d9c53b5eeb
commit b217b6a4ab
11 changed files with 33 additions and 35 deletions

View File

@@ -914,7 +914,7 @@ public class Jackson2HalModule extends SimpleModule {
*/
public boolean hasCuriedEmbed(Iterable<?> source) {
return map(source).keySet().stream()
return map(source).keySet().stream() //
.anyMatch(rel -> rel.contains(":"));
}
}