File tree 1 file changed +10
-2
lines changed
src/main/java/org/gitlab4j/api/models
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,22 @@ public GroupFilter withSkipGroups(List<Integer> skipGroups) {
33
33
return (this );
34
34
}
35
35
36
+ /**
37
+ * @deprecated this method contains a typo, use {@link #withAllAvailable(Boolean)} instead
38
+ */
39
+ @ Deprecated
40
+ public GroupFilter withAllAvailabley (Boolean allAvailable ) {
41
+ return withAllAvailable (allAvailable );
42
+ }
43
+
36
44
/**
37
45
* Show all the groups you have access to (defaults to false for authenticated users, true for admin).
38
46
* Attributes owned and min_access_level have precedence
39
47
*
40
- * @param allAvailable if true show all avauilable groups
48
+ * @param allAvailable if true show all available groups
41
49
* @return the reference to this GroupFilter instance
42
50
*/
43
- public GroupFilter withAllAvailabley (Boolean allAvailable ) {
51
+ public GroupFilter withAllAvailable (Boolean allAvailable ) {
44
52
this .allAvailable = allAvailable ;
45
53
return (this );
46
54
}
You can’t perform that action at this time.
0 commit comments