Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,10 @@ private static void updateDeploymentConfigurationWithEncryptedKeys(Map<String, S
if (stringTokenizer.hasMoreTokens()) {
String key = stringTokenizer.nextToken();
String value = encryptedKeyMap.get(key.trim());
line = key.concat("= \"").concat(value).concat("\"");
// Fix: Check if value exists before replacing
if (value != null) {
line = key.concat("= \"").concat(value).concat("\"");
}
Comment thread
PasinduSuraweera marked this conversation as resolved.
}
}
} else {
Expand Down