public void run(InputStream in, PrintStream out, PrintStream err) throws SVNException {
run(out, err);
}
public void run(PrintStream out, PrintStream err) throws SVNException {
SVNCommandLine line = getCommandLine();
boolean isEmpty = true;
String paths[] = new String[line.getPathCount()];
for(int i = 0; i < line.getPathCount(); i++) {
paths[i] = line.getPathAt(i).trim();
}
for(int i = 0; i < paths.length; i++) {
String path = paths[i];
File validatedPath = new File(SVNPathUtil.validateFilePath(new File(path).getAbsolutePath()));
if (SVNFileType.getType(validatedPath) == SVNFileType.DIRECTORY && !SVNWCUtil.isVersionedDirectory(validatedPath) &&