[MNG-6819] Fix NullPointerException in StringVisitorModelInterpolator

Closes #301
This commit is contained in:
碎镜 2019-12-13 20:07:20 +08:00 committed by rfscholte
parent ba3234e7ae
commit 2df61010c1
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 inter = interpolate( value );
if ( value != inter )
if ( value != inter && inter != null )
{
entry.setValue( inter );
}