4647484950515253545556
String destPath = params[0]; Resource wcDir = new Resource(collection.append(destPath)); try { wc.addEntry(wcDir); } catch (SVNException e) { throw new CommandException(e); } } }
6061626364656667686970
String uri = args[0].getStringValue(); Resource wcURI = new Resource(uri); try { wc.addEntry(wcURI); } catch (SVNException svne) { throw new XPathException(this, "error while adding location '" + uri + "'", svne); } return Sequence.EMPTY_SEQUENCE;