Skip to content

Commit

Permalink
Rename Repository URL to URI
Browse files Browse the repository at this point in the history
  • Loading branch information
valentin-boehm committed Jan 8, 2024
1 parent 964dd2c commit 47f42a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

public class ProgrammingExerciseStudentParticipation extends StudentParticipation {

private String repositoryUrl;
private String repositoryUri;
private String buildPlanId;
private String branch;
private boolean locked;

public String getRepositoryUrl() {
return repositoryUrl;
public String getRepositoryUri() {
return repositoryUri;
}

public void setRepositoryUrl(String repositoryUrl) {
this.repositoryUrl = repositoryUrl;
public void setRepositoryUri(String repositoryUri) {
this.repositoryUri = repositoryUri;
}

public String getBuildPlanId() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ private List<RequestStat> solveAndSubmitProgrammingExercise(ProgrammingExercise
.getStudentParticipations()
.iterator()
.next();
var repositoryCloneUrl = programmingParticipation.getRepositoryUrl();
var repositoryCloneUrl = programmingParticipation.getRepositoryUri();
List<RequestStat> requestStats = new ArrayList<>();

try {
Expand Down

0 comments on commit 47f42a8

Please sign in to comment.