Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#105] Implement removeRemote method #106

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1047,8 +1047,18 @@ public void removeLocal(String[] path, long options, ISVNProgressMonitor monitor
@Override
public void removeRemote(String[] path, String message, long options, Map revProps, ISVNProgressMonitor monitor)
throws SVNConnectorException {
System.out.println("SvnKit1_10Connector.removeRemote()");
//TODO
Map<String, Object> parameters = new HashMap<>();
parameters.put("path", path);
parameters.put("message", message);
parameters.put("options", Long.valueOf(options));
parameters.put("revProps", revProps);
parameters.put("monitor", monitor);
watch.commandLong(ISVNCallListener.REMOVE_REMOTE, parameters, callback(monitor), p -> client.remove(//
new HashSet<>(Arrays.asList(path)), //
(options & Options.FORCE) != 0, false, //
new RevProps(revProps).adapt(), //
new CommitMessage(message), //
new CommitStatusCallback(monitor)));
}

@Override
Expand Down
Loading