Avoids npe when no config file path
authorNiels Erik G. Nielsen <nielserik@indexdata.com>
Tue, 12 Mar 2013 20:22:59 +0000 (16:22 -0400)
committerNiels Erik G. Nielsen <nielserik@indexdata.com>
Tue, 12 Mar 2013 20:22:59 +0000 (16:22 -0400)
src/main/java/com/indexdata/pz2utils4jsf/config/Pz2Config.java

index c293649..0c9fc6f 100644 (file)
@@ -87,7 +87,7 @@ public class Pz2Config implements ModuleConfigurationGetter, Serializable {
 \r
   @Override\r
   public String getConfigFilePath() {\r
-    return moduleConfig.getConfigFilePath();\r
+    return (moduleConfig != null ? moduleConfig.getConfigFilePath() : "nopath");\r
   }\r
   \r
   \r