File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed
src/main/java/org/gitlab4j/api Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 55public abstract class AbstractSystemHookEvent implements SystemHookEvent {
66
77 private String requestUrl ;
8- private String requestQuesryString ;
8+ private String requestQueryString ;
99 private String requestSecretToken ;
1010
1111 @ Override
@@ -20,14 +20,14 @@ public String getRequestUrl() {
2020 }
2121
2222 @ Override
23- public void setRequestQueryString (String requestQuesryString ) {
24- this .requestQuesryString = requestQuesryString ;
23+ public void setRequestQueryString (String requestQueryString ) {
24+ this .requestQueryString = requestQueryString ;
2525 }
2626
2727 @ Override
2828 @ JsonIgnore
2929 public String getRequestQueryString () {
30- return (requestQuesryString );
30+ return (requestQueryString );
3131 }
3232
3333 @ Override
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public interface SystemHookEvent {
3838 void setRequestUrl (String requestUrl );
3939 @ JsonIgnore String getRequestUrl ();
4040
41- void setRequestQueryString (String requestQuesryString );
41+ void setRequestQueryString (String requestQueryString );
4242 @ JsonIgnore String getRequestQueryString ();
4343
4444 void setRequestSecretToken (String requestSecretToken );
Original file line number Diff line number Diff line change 55public abstract class AbstractEvent implements Event {
66
77 private String requestUrl ;
8- private String requestQuesryString ;
8+ private String requestQueryString ;
99 private String secretToken ;
1010
1111 @ Override
@@ -20,14 +20,14 @@ public String getRequestUrl() {
2020 }
2121
2222 @ Override
23- public void setRequestQueryString (String requestQuesryString ) {
24- this .requestQuesryString = requestQuesryString ;
23+ public void setRequestQueryString (String requestQueryString ) {
24+ this .requestQueryString = requestQueryString ;
2525 }
2626
2727 @ Override
2828 @ JsonIgnore
2929 public String getRequestQueryString () {
30- return (requestQuesryString );
30+ return (requestQueryString );
3131 }
3232
3333 @ Override
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public abstract class AbstractPushEvent {
2525 private Integer totalCommitsCount ;
2626
2727 private String requestUrl ;
28- private String requestQuesryString ;
28+ private String requestQueryString ;
2929 private String requestSecretToken ;
3030
3131 public String getEventName () {
@@ -149,13 +149,13 @@ public String getRequestUrl() {
149149 return (requestUrl );
150150 }
151151
152- public void setRequestQueryString (String requestQuesryString ) {
153- this .requestQuesryString = requestQuesryString ;
152+ public void setRequestQueryString (String requestQueryString ) {
153+ this .requestQueryString = requestQueryString ;
154154 }
155155
156156 @ JsonIgnore
157157 public String getRequestQueryString () {
158- return (requestQuesryString );
158+ return (requestQueryString );
159159 }
160160
161161
@@ -191,4 +191,4 @@ public String getBranch() {
191191 }
192192
193193 private static final String REFS_HEADS = "refs/heads/" ;
194- }
194+ }
You can’t perform that action at this time.
0 commit comments