DATACMNS-1755 - Declare each variable in its own statement.

Update classes so that each member is declared on its own line. This
help to make them slightly easier to see when not using an IDE.

Original pull request: #448.
This commit is contained in:
Phillip Webb
2020-06-09 11:26:33 -07:00
committed by Mark Paluch
parent 67442077b7
commit 86bda64daa
9 changed files with 22 additions and 10 deletions

View File

@@ -60,7 +60,8 @@ public abstract class SpringDataJaxb {
@XmlAccessorType(XmlAccessType.FIELD)
public static class PageRequestDto {
@XmlAttribute int page, size;
@XmlAttribute int page;
@XmlAttribute int size;
@XmlElement(name = "order", namespace = NAMESPACE) List<OrderDto> orders = new ArrayList<>();
}