Skip to content

Commit 3526b07

Browse files
committed
Moved reordered properties.
1 parent 9fbcbf9 commit 3526b07

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/java/org/gitlab4j/api/webhook/MergeRequestEvent.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class MergeRequestEvent implements Event {
1313

1414
private User user;
1515
private EventProject project;
16-
private ObjectAttributes objectAttributes;
1716
private EventRepository repository;
17+
private ObjectAttributes objectAttributes;
1818

1919
public String getObjectKind() {
2020
return (OBJECT_KIND);
@@ -41,14 +41,6 @@ public void setProject(EventProject project) {
4141
this.project = project;
4242
}
4343

44-
public ObjectAttributes getObjectAttributes() {
45-
return this.objectAttributes;
46-
}
47-
48-
public void setObjectAttributes(ObjectAttributes objectAttributes) {
49-
this.objectAttributes = objectAttributes;
50-
}
51-
5244
public EventRepository getRepository() {
5345
return repository;
5446
}
@@ -57,6 +49,14 @@ public void setRepository(EventRepository repository) {
5749
this.repository = repository;
5850
}
5951

52+
public ObjectAttributes getObjectAttributes() {
53+
return this.objectAttributes;
54+
}
55+
56+
public void setObjectAttributes(ObjectAttributes objectAttributes) {
57+
this.objectAttributes = objectAttributes;
58+
}
59+
6060
@XmlAccessorType(XmlAccessType.FIELD)
6161
public static class ObjectAttributes extends EventMergeRequest {
6262
}

0 commit comments

Comments
 (0)