remove noisy print statements in RevisionInfoBuilder

This commit is contained in:
jeb228 2010-12-06 19:44:31 +00:00
parent ec25d91391
commit 19bc848fe7
2 changed files with 0 additions and 8 deletions

View file

@ -24,15 +24,11 @@ public class InfoResponseParser {
public InfoResponseParser(String infoResponse) {
this.infoResponse = infoResponse;
System.err.println("response from svn info: '"
+ ((infoResponse == null) ? null : infoResponse.replace("\n",
"\\n")) + "'");
}
public String parse() {
try {
path = figurePath();
System.err.println("path=" + path); // TODO
if (isTrunkPath()) {
return "trunk";
@ -56,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);
}