Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
336a8c89
Unverified
Commit
336a8c89
authored
Mar 30, 2023
by
Jérémie Bresson
Committed by
GitHub
Mar 30, 2023
Browse files
GroupFilter: fix typo in method name (#908)
* Fix typo in method name * Fix typo in the javadoc
parent
c262345c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/GroupFilter.java
View file @
336a8c89
...
@@ -33,14 +33,22 @@ public class GroupFilter {
...
@@ -33,14 +33,22 @@ public class GroupFilter {
return
(
this
);
return
(
this
);
}
}
/**
* @deprecated this method contains a typo, use {@link #withAllAvailable(Boolean)} instead
*/
@Deprecated
public
GroupFilter
withAllAvailabley
(
Boolean
allAvailable
)
{
return
withAllAvailable
(
allAvailable
);
}
/**
/**
* Show all the groups you have access to (defaults to false for authenticated users, true for admin).
* Show all the groups you have access to (defaults to false for authenticated users, true for admin).
* Attributes owned and min_access_level have precedence
* Attributes owned and min_access_level have precedence
*
*
* @param allAvailable if true show all ava
u
ilable groups
* @param allAvailable if true show all available groups
* @return the reference to this GroupFilter instance
* @return the reference to this GroupFilter instance
*/
*/
public
GroupFilter
withAllAvailable
y
(
Boolean
allAvailable
)
{
public
GroupFilter
withAllAvailable
(
Boolean
allAvailable
)
{
this
.
allAvailable
=
allAvailable
;
this
.
allAvailable
=
allAvailable
;
return
(
this
);
return
(
this
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment