spelling fixes

This commit is contained in:
klemens
2017-11-07 21:45:36 +01:00
parent 8ab6b77b56
commit 4776a542a7
6 changed files with 9 additions and 9 deletions

View File

@@ -133,7 +133,7 @@ public class EscapeTool {
* for display in a CSV.
*
* @param ids the set of identifiers
* @return the formated list of none CPE identifiers
* @return the formatted list of none CPE identifiers
*/
public String csvIdentifiers(Set<Identifier> ids) {
if (ids == null || ids.isEmpty()) {
@@ -159,7 +159,7 @@ public class EscapeTool {
* for display in a CSV.
*
* @param ids the set of identifiers
* @return the formated list of CPE identifiers
* @return the formatted list of CPE identifiers
*/
public String csvCpe(Set<Identifier> ids) {
if (ids == null || ids.isEmpty()) {
@@ -185,7 +185,7 @@ public class EscapeTool {
* for confidence display in a CSV.
*
* @param ids the set of identifiers
* @return the formated list of confidence
* @return the formatted list of confidence
*/
public String csvCpeConfidence(Set<Identifier> ids) {
if (ids == null || ids.isEmpty()) {
@@ -211,7 +211,7 @@ public class EscapeTool {
* for display in a CSV.
*
* @param ids the set of identifiers
* @return the formated list of GAV identifiers
* @return the formatted list of GAV identifiers
*/
public String csvGav(Set<Identifier> ids) {
if (ids == null || ids.isEmpty()) {

View File

@@ -28,7 +28,7 @@ import org.owasp.dependencycheck.dependency.Evidence;
* work for a range of similar false positives/false negatives.
*
* The EvidenceMatcher is used for processing Evidences of a project's
* dependencies in conjuction with the {@code <given>} and {@code <remove>}
* dependencies in conjunction with the {@code <given>} and {@code <remove>}
* clauses of the hints file.
*
* @author Hans Aikema

View File

@@ -48,7 +48,7 @@ public class EngineVersionCheckTest extends BaseTest {
* @return milliseconds
*/
private long dateToMilliseconds(String date) {
//removed for compatability with joda-time 1.6
//removed for compatibility with joda-time 1.6
//DateTimeFormatter dtf = DateTimeFormat.forPattern("yyyy-MM-dd");
//return DateTime.parse(date, dtf).toInstant().getMillis();
String[] dp = date.split("-");