aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/SignatureProfileSettings.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/SignatureProfileSettings.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/SignatureProfileSettings.java
index 462bf743..dc1250fb 100644
--- a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/SignatureProfileSettings.java
+++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/SignatureProfileSettings.java
@@ -119,6 +119,7 @@ public class SignatureProfileSettings implements IProfileConstants {
Map<String, String> others = configuration
.getValuesPrefix(profilePrefix);
+ if(others != null) {
Iterator<String> otherIterator = others.keySet().iterator();
while (otherIterator.hasNext()) {
@@ -137,7 +138,7 @@ public class SignatureProfileSettings implements IProfileConstants {
logger.debug(" Settings: " + key + " : " + value);
}
-
+ }
Iterator<SignatureProfileEntry> dumpIterator =
profileInformations.values().iterator();