From 7542336ae528685193d84cb2f3bd4547bc16baa4 Mon Sep 17 00:00:00 2001 From: orbiter Date: Thu, 26 Feb 2009 21:52:32 +0000 Subject: [PATCH] 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 --- source/de/anomic/yacy/yacyURL.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/yacy/yacyURL.java b/source/de/anomic/yacy/yacyURL.java index c6df64bf2..b65a54af3 100644 --- a/source/de/anomic/yacy/yacyURL.java +++ b/source/de/anomic/yacy/yacyURL.java @@ -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 + "://" +