formatting

This commit is contained in:
spencergibb
2023-03-15 15:51:41 -04:00
parent b31af9eef0
commit 9575a3496e

View File

@@ -77,7 +77,8 @@ public class CachedBodyOutputMessage implements ReactiveHttpOutputMessage {
*/
public Flux<DataBuffer> getBody() {
if (body == null) {
return Flux.error(new IllegalStateException("The body is not set. " + "Did handling complete with success?"));
return Flux
.error(new IllegalStateException("The body is not set. " + "Did handling complete with success?"));
}
return this.body;
}