[MNG-6819] Fix NullPointerException in StringVisitorModelInterpolator

Closes #301
This commit is contained in:
碎镜 2019-12-13 20:07:20 +08:00 committed by Sylwester Lachiewicz
parent 35e05e4972
commit 14c9e156bc
3 changed files with 1 additions and 1 deletions

0
apache-maven/src/assembly/maven/bin/mvnDebug Normal file → Executable file
View File

0
apache-maven/src/assembly/maven/bin/mvnyjp Normal file → Executable file
View File

View File

@ -1420,7 +1420,7 @@ public class StringVisitorModelInterpolator
{ {
String value = (String) v; String value = (String) v;
String inter = interpolate( value ); String inter = interpolate( value );
if ( value != inter ) if ( value != inter && inter != null )
{ {
entry.setValue( inter ); entry.setValue( inter );
} }