Browse Source

whitespace

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@705649 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 17 years ago
parent
commit
19f31ba0f3
1 changed files with 14 additions and 14 deletions
  1. +14
    -14
      src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java

+ 14
- 14
src/main/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.java View File

@@ -248,21 +248,21 @@ public class ChangeLogTask extends AbstractCvsTask {
}

if (!remote) {
setCommand("log");

if (getTag() != null) {
CvsVersion myCvsVersion = new CvsVersion();
myCvsVersion.setProject(getProject());
myCvsVersion.setTaskName("cvsversion");
myCvsVersion.setCvsRoot(getCvsRoot());
myCvsVersion.setCvsRsh(getCvsRsh());
myCvsVersion.setPassfile(getPassFile());
myCvsVersion.setDest(inputDir);
myCvsVersion.execute();
if (myCvsVersion.supportsCvsLogWithSOption()) {
addCommandArgument("-S");
setCommand("log");

if (getTag() != null) {
CvsVersion myCvsVersion = new CvsVersion();
myCvsVersion.setProject(getProject());
myCvsVersion.setTaskName("cvsversion");
myCvsVersion.setCvsRoot(getCvsRoot());
myCvsVersion.setCvsRsh(getCvsRsh());
myCvsVersion.setPassfile(getPassFile());
myCvsVersion.setDest(inputDir);
myCvsVersion.execute();
if (myCvsVersion.supportsCvsLogWithSOption()) {
addCommandArgument("-S");
}
}
}
} else {
// supply 'rlog' as argument instead of command
setCommand("");


Loading…
Cancel
Save