Unverified Commit d45d0cd7 authored by Jérémie Bresson's avatar Jérémie Bresson Committed by GitHub
Browse files

Delete "ProjectSharedGroup" (replaced by "SharedGroup") (#1059)

parent 8dbe4fbf
...@@ -76,7 +76,7 @@ public class Project { ...@@ -76,7 +76,7 @@ public class Project {
private Boolean requestAccessEnabled; private Boolean requestAccessEnabled;
private String runnersToken; private String runnersToken;
private Boolean sharedRunnersEnabled; private Boolean sharedRunnersEnabled;
private List<ProjectSharedGroup> sharedWithGroups; private List<SharedGroup> sharedWithGroups;
private Boolean snippetsEnabled; private Boolean snippetsEnabled;
private String sshUrlToRepo; private String sshUrlToRepo;
private Integer starCount; private Integer starCount;
...@@ -502,11 +502,11 @@ public class Project { ...@@ -502,11 +502,11 @@ public class Project {
this.sharedRunnersEnabled = sharedRunnersEnabled; this.sharedRunnersEnabled = sharedRunnersEnabled;
} }
public List<ProjectSharedGroup> getSharedWithGroups() { public List<SharedGroup> getSharedWithGroups() {
return sharedWithGroups; return sharedWithGroups;
} }
public void setSharedWithGroups(List<ProjectSharedGroup> sharedWithGroups) { public void setSharedWithGroups(List<SharedGroup> sharedWithGroups) {
this.sharedWithGroups = sharedWithGroups; this.sharedWithGroups = sharedWithGroups;
} }
......
package org.gitlab4j.api.models;
/**
* @deprecated use {@link SharedGroup} instead
*/
@Deprecated
public class ProjectSharedGroup extends SharedGroup {
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment