(Scott Phillips) Fixed compile error in LogAnalyser.java - a miss typed method name.

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2683 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Scott Phillips
2008-02-15 18:53:03 +00:00
parent 45360e6341
commit c4354d213d

View File

@@ -549,7 +549,7 @@ public class LogAnalyser
// now do the host name and url lookup
hostName = ConfigurationManager.getProperty("dspace.hostname").trim();
name = ConfigurationManager.getProperty("dspace.name").trim();
url = ConfigurationManager.getProperties("dspace.url").trim();
url = ConfigurationManager.getProperty("dspace.url").trim();
if ((url != null) && (!url.endsWith("/")))
{
url = url + "/";