Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
Signed-off-by: Stelios Mavrommatakis <steliosmavr@cytech.gr>
  • Loading branch information
Stelios123 committed Dec 11, 2023
1 parent a8743b2 commit 79102f8
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ public RadRemote(GitRepository repo) {
}


@Override
public ProcessOutput run() {
var rad = repo.getProject().getService(RadicleProjectService.class);
return rad.remoteList(repo);
}


@Override
public String getActionName() {
Expand Down Expand Up @@ -52,5 +48,11 @@ public List<Peer> findTrackedPeers() {
return peers;
}

@Override
public ProcessOutput run() {
var rad = repo.getProject().getService(RadicleProjectService.class);
return rad.remoteList(repo);
}

public record Peer(String name, String id) { }
}

0 comments on commit 79102f8

Please sign in to comment.