added missing separator

This commit is contained in:
Sebastian Sdorra
2011-11-20 18:41:58 +01:00
parent fc543d5d93
commit f007bb1416

View File

@@ -81,6 +81,11 @@ public class WUIUrlBuilder
value = NULL;
}
if (!this.url.endsWith(SEPARATOR))
{
this.url = this.url.concat(SEPARATOR);
}
this.url = this.url.concat(value);
return this;