remove noisy print statements in RevisionInfoBuilder
This commit is contained in:
parent
ec25d91391
commit
19bc848fe7
2 changed files with 0 additions and 8 deletions
|
@ -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.");
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue