version 0.4.9.7
[jSite.git] / src / de / todesbaum / jsite / application / Project.java
index 7604259..57138b8 100644 (file)
@@ -241,7 +241,7 @@ public class Project implements Comparable {
         * @return Returns the fileOptions.
         */
        public Map<String, FileOption> getFileOptions() {
-               return Collections.unmodifiableMap(new HashMap<String, FileOption>(fileOptions));
+               return Collections.unmodifiableMap(fileOptions);
        }
 
        /**
@@ -285,7 +285,7 @@ public class Project implements Comparable {
         * @return The final request URI
         */
        public String getFinalRequestURI(int offset) {
-               return "freenet:USK@" + requestURI + "/" + path + "/" + (edition + offset) + "/";
+               return "USK@" + requestURI + "/" + path + "/" + (edition + offset) + "/";
        }
 
 }