From d906da181d1d37a64597230d4ea87d4c57837560 Mon Sep 17 00:00:00 2001 From: standash Date: Thu, 24 Aug 2017 17:54:34 +0200 Subject: [PATCH] Blah --- molerat/src/main/java/it/unitn/molerat/cmd/Main.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/molerat/src/main/java/it/unitn/molerat/cmd/Main.java b/molerat/src/main/java/it/unitn/molerat/cmd/Main.java index 3612007..bac89d0 100644 --- a/molerat/src/main/java/it/unitn/molerat/cmd/Main.java +++ b/molerat/src/main/java/it/unitn/molerat/cmd/Main.java @@ -24,7 +24,7 @@ public class Main { Option listTrackersOpt = Option.builder() .longOpt("list-trackers") - .desc("List the available trackers for vulnerability molerat.evidence") + .desc("List the available trackers for vulnerability vulnerability evidence") .build(); opts.addOption(listTrackersOpt); @@ -65,7 +65,7 @@ public class Main { Option trackerTypeOpt = Option.builder() .longOpt("tracker-type") - .desc("The type of the vulnerability molerat.evidence tracker") + .desc("The type of the vulnerability evidence tracker") .hasArg() .build(); opts.addOption(trackerTypeOpt); @@ -208,7 +208,7 @@ public class Main { ); boolean isSuccessful = db.insertAnalysisEntry(entry); if (!isSuccessful) { - System.out.format("WARNING: Could not get any molerat.evidence for '%s' in '%s'\n", cveName, projectName); + System.out.format("WARNING: Could not get any vulnerability evidence for '%s' in '%s'\n", cveName, projectName); } System.out.println("INFO: Done!"); } @@ -234,7 +234,7 @@ public class Main { System.out.format("INFO: writing the entries for '%s'\n", cveName); Set evidences = analysis.getVulnEvidencesSet(); if (evidences.size() == 0) { - throw new Exception(String.format("There is no molerat.evidence for '%s' in the database", cveName)); + throw new Exception(String.format("There is no vulnerability evidence for '%s' in the database", cveName)); } Map locsCount = new LinkedHashMap<>(); for (VulnerabilityEvidence evd : evidences) {