performance enhancement to yacyURL: omit second processing of resolveBackpath. This method is already applied during initialization of the object and was called a second time when the url was exportet.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5656 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 16 years ago
parent 7ea53fe47b
commit 7542336ae5

@ -568,7 +568,7 @@ public class yacyURL implements Serializable {
} else if (this.protocol.equals("https")) {
if (this.port < 0 || this.port == 443) { defaultPort = true; }
}
final String path = resolveBackpath(this.getFile(includeReference));
final String path = this.getFile(includeReference);
if (defaultPort) {
return this.protocol + "://" +

Loading…
Cancel
Save