Skip to content

Commit

Permalink
Prevent NPE in ReflectionResolver#toString
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpartsch committed Aug 9, 2023
1 parent 8e0120e commit b382c73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group 'com.docutools'
version = '1.6.4'
version = '1.6.5'

java {
toolchain {
Expand Down
Expand Up @@ -510,6 +510,6 @@ private Object resolveNonFinalValue(Object property, String placeholderName)

@Override
public String toString() {
return bean.toString();
return bean != null? bean.toString() : "";
}
}

0 comments on commit b382c73

Please sign in to comment.