mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-21 08:39:24 +01:00
fixed string format newline character
Former-commit-id: 490c6b3666f03c6796ddd9b47ce83fe8bc070645
This commit is contained in:
@@ -281,12 +281,11 @@ public class Engine {
|
|||||||
* Runs the analyzers against all of the dependencies.
|
* Runs the analyzers against all of the dependencies.
|
||||||
*/
|
*/
|
||||||
public void analyzeDependencies() {
|
public void analyzeDependencies() {
|
||||||
|
|
||||||
//need to ensure that data exists
|
//need to ensure that data exists
|
||||||
try {
|
try {
|
||||||
ensureDataExists();
|
ensureDataExists();
|
||||||
} catch (NoDataException ex) {
|
} catch (NoDataException ex) {
|
||||||
String msg = String.format("\n\n%s\n\nUnable to continue dependency-check analysis.", ex.getMessage());
|
String msg = String.format("%n%n%s%n%nUnable to continue dependency-check analysis.", ex.getMessage());
|
||||||
Logger.getLogger(Engine.class.getName()).log(Level.SEVERE, msg);
|
Logger.getLogger(Engine.class.getName()).log(Level.SEVERE, msg);
|
||||||
Logger.getLogger(Engine.class.getName()).log(Level.FINE, null, ex);
|
Logger.getLogger(Engine.class.getName()).log(Level.FINE, null, ex);
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user