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