Skip to content

Commit

Permalink
Fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Jan 6, 2022
1 parent 0f3c39b commit f4fd031
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -497,7 +497,8 @@ else if ( StringUtils.isNotEmpty( activationFile.getMissing() ) )

problems.add( new ModelProblemCollectorRequest( Severity.ERROR, Version.BASE ).setMessage(
"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 ) );
}
}
Expand Down

0 comments on commit f4fd031

Please sign in to comment.