NIHVIVO-1229 Remove debug statements in the RevisionInfoBuilder
This commit is contained in:
parent
bf95df0c2e
commit
44ebaa9bae
2 changed files with 1 additions and 6 deletions
|
@ -29,7 +29,6 @@ public class InfoResponseParser {
|
||||||
public String parse() {
|
public String parse() {
|
||||||
try {
|
try {
|
||||||
path = figurePath();
|
path = figurePath();
|
||||||
System.err.println("path=" + path);
|
|
||||||
|
|
||||||
if (isTrunkPath()) {
|
if (isTrunkPath()) {
|
||||||
return "trunk";
|
return "trunk";
|
||||||
|
@ -41,7 +40,7 @@ public class InfoResponseParser {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.err.println(e); // TODO
|
System.err.println(e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,8 +52,6 @@ public class InfoResponseParser {
|
||||||
|
|
||||||
String url = getUrlFromResponse();
|
String url = getUrlFromResponse();
|
||||||
String root = getRootFromResponse();
|
String root = getRootFromResponse();
|
||||||
System.err.println("url=" + url); // TODO
|
|
||||||
System.err.println("root=" + root); // TODO
|
|
||||||
|
|
||||||
if (!url.startsWith(root)) {
|
if (!url.startsWith(root)) {
|
||||||
throw new Exception("url doesn't start with root.");
|
throw new Exception("url doesn't start with root.");
|
||||||
|
|
|
@ -71,8 +71,6 @@ public class RevisionInfoBuilder {
|
||||||
|
|
||||||
String release = assembleReleaseNameFromSubversion();
|
String release = assembleReleaseNameFromSubversion();
|
||||||
String revision = obtainRevisionLevelFromSubversion();
|
String revision = obtainRevisionLevelFromSubversion();
|
||||||
System.err.println("release=" + release); // TODO
|
|
||||||
System.err.println("revision=" + revision); // TODO
|
|
||||||
return buildLine(release, revision);
|
return buildLine(release, revision);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue