[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [Subclipse-dev] unavailable JavaSVN causes NoClassDefFoundError

From: Mark Phippard <markp_at_softlanding.com>
Date: 2006-10-17 21:42:55 CEST

"Oliver Niekrenz" <oliver@niekrenz.de> wrote on 10/17/2006 03:31:45 PM:

> No, I was talking about URL->WC which does need a revision for the
source,
> whereas WC->WC does not need one.
> But both cases result in a call to copy(String, String) right now
without a
> revision.
> Therefore I would like to extend the function with a revision which
would be
> null for a WC->WC copy.

At least at the adapter level this is not true. Here is the
CmdLineClientAdapter method for URL -> WC copy:

public void copy(SVNUrl srcUrl, File destPath, SVNRevision revision)
        throws SVNClientException {
        try {
                _cmd.copy(toString(srcUrl), toString(destPath), null,
toString(revision));
        } catch (CmdLineException e) {
                throw SVNClientException.wrapException(e);
        }
}

It clearly takes a revision argument and passes it along to the command
line method. If svnAnt does not use this method then the next change
needs to happen in that code.

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subclipse.tigris.org
For additional commands, e-mail: dev-help@subclipse.tigris.org
Received on Tue Oct 17 21:43:33 2006

This is an archived mail posted to the Subclipse Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.