Одна из Developer dirty technics
Когда от метода отрезается важный для понимания кусок.
public Response method1(Request request) {
return request
.attributes()
.filter()
.map()
.forEach(this::updateAttribute)
}
public Value updateAttribute(Attribute attribute) {
return attribute * 2;
}