Fix checkstyle issue

This commit is contained in:
Michael Osipov 2022-01-06 22:26:58 +01:00
parent 0f3c39b8ed
commit f4fd031828
1 changed files with 2 additions and 1 deletions

View File

@ -497,7 +497,8 @@ public class DefaultModelBuilder
problems.add( new ModelProblemCollectorRequest( Severity.ERROR, Version.BASE ).setMessage( problems.add( new ModelProblemCollectorRequest( Severity.ERROR, Version.BASE ).setMessage(
"Failed to interpolate file location " + path + ": " + e.getMessage() ).setLocation( "Failed to interpolate file location " + path + ": " + e.getMessage() ).setLocation(
activationFile.getLocation( StringUtils.isNotEmpty( activationFile.getExists() ) ? "exists" : "missing" ) ) activationFile.getLocation( StringUtils.isNotEmpty( activationFile.getExists() )
? "exists" : "missing" ) )
.setException( e ) ); .setException( e ) );
} }
} }