mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-13 10:29:35 +01:00
Fix NPE when replacing unexisting strings
This commit is contained in:
parent
6d5597b070
commit
c11ceb7dae
@ -94,7 +94,9 @@ public class StringReplacer {
|
||||
String rightDelimiter) {
|
||||
for (Map.Entry<String, String> entry : map.entrySet()) {
|
||||
String keyword = leftDelimiter + entry.getKey() + rightDelimiter;
|
||||
src = src.replace(keyword, entry.getValue());
|
||||
if (entry.getValue() != null && keyword != null) {
|
||||
src = src.replace(keyword, entry.getValue());
|
||||
}
|
||||
}
|
||||
return src;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user