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
d45d0cd7
Unverified
Commit
d45d0cd7
authored
Nov 16, 2023
by
Jérémie Bresson
Committed by
GitHub
Nov 16, 2023
Browse files
Delete "ProjectSharedGroup" (replaced by "SharedGroup") (#1059)
parent
8dbe4fbf
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Project.java
View file @
d45d0cd7
...
...
@@ -76,7 +76,7 @@ public class Project {
private
Boolean
requestAccessEnabled
;
private
String
runnersToken
;
private
Boolean
sharedRunnersEnabled
;
private
List
<
Project
SharedGroup
>
sharedWithGroups
;
private
List
<
SharedGroup
>
sharedWithGroups
;
private
Boolean
snippetsEnabled
;
private
String
sshUrlToRepo
;
private
Integer
starCount
;
...
...
@@ -502,11 +502,11 @@ public class Project {
this
.
sharedRunnersEnabled
=
sharedRunnersEnabled
;
}
public
List
<
Project
SharedGroup
>
getSharedWithGroups
()
{
public
List
<
SharedGroup
>
getSharedWithGroups
()
{
return
sharedWithGroups
;
}
public
void
setSharedWithGroups
(
List
<
Project
SharedGroup
>
sharedWithGroups
)
{
public
void
setSharedWithGroups
(
List
<
SharedGroup
>
sharedWithGroups
)
{
this
.
sharedWithGroups
=
sharedWithGroups
;
}
...
...
src/main/java/org/gitlab4j/api/models/ProjectSharedGroup.java
deleted
100644 → 0
View file @
8dbe4fbf
package
org.gitlab4j.api.models
;
/**
* @deprecated use {@link SharedGroup} instead
*/
@Deprecated
public
class
ProjectSharedGroup
extends
SharedGroup
{
}
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