NIHVIVO-1229 Remove debug statements in the RevisionInfoBuilder

This commit is contained in:
jeb228 2010-10-25 21:20:47 +00:00
parent bf95df0c2e
commit 44ebaa9bae
2 changed files with 1 additions and 6 deletions

View file

@ -29,7 +29,6 @@ public class InfoResponseParser {
public String parse() {
try {
path = figurePath();
System.err.println("path=" + path);
if (isTrunkPath()) {
return "trunk";
@ -41,7 +40,7 @@ public class InfoResponseParser {
return null;
}
} catch (Exception e) {
System.err.println(e); // TODO
System.err.println(e);
return null;
}
}
@ -53,8 +52,6 @@ public class InfoResponseParser {
String url = getUrlFromResponse();
String root = getRootFromResponse();
System.err.println("url=" + url); // TODO
System.err.println("root=" + root); // TODO
if (!url.startsWith(root)) {
throw new Exception("url doesn't start with root.");

View file

@ -71,8 +71,6 @@ public class RevisionInfoBuilder {
String release = assembleReleaseNameFromSubversion();
String revision = obtainRevisionLevelFromSubversion();
System.err.println("release=" + release); // TODO
System.err.println("revision=" + revision); // TODO
return buildLine(release, revision);
}