sventon subversion web client - http://www.sventon.org |
[show recent changes] | |
Rev: 24698 - http://anonsvn.icesoft.org/repo / icepush / branches / icepush-2.0.x-maintenance / core / src / main / java / org / icepush / ConfigurationServer.java |
Unified Diff View - ConfigurationServer.java |
/icepush/branches/icepush-2.0.x-maintenance/core/src/main/java/org/icepush/ConfigurationServer.java @ revision 24697 |
---|
/icepush/branches/icepush-2.0.x-maintenance/core/src/main/java/org/icepush/ConfigurationServer.java @ revision 24698 |
@@ -70,7 +70,11 @@ } private static String normalizeContextPath(String path) { - return path.startsWith("/") ? path : "/" + path; + if (path == null) { + return null; + } else { + return path.startsWith("/") ? path : "/" + path; + } } public void service(Request request) throws Exception { |
sventon 2.5.1