Fixed legal URL get in service class.
This commit is contained in:
parent
378bde2d73
commit
b36a6cc6e9
1 changed files with 6 additions and 1 deletions
|
@ -371,7 +371,7 @@ public class Service extends PathPropertyList
|
|||
|
||||
String value = get("service.legal.url", "service.legal");
|
||||
|
||||
result = getURL(value);
|
||||
result = URLUtils.of(value);
|
||||
|
||||
//
|
||||
return result;
|
||||
|
@ -780,6 +780,11 @@ public class Service extends PathPropertyList
|
|||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the URL all.
|
||||
*
|
||||
* @return the URL all
|
||||
*/
|
||||
public URLSet getURLAll()
|
||||
{
|
||||
URLSet result;
|
||||
|
|
Loading…
Reference in a new issue