diff --git a/src/main/java/com/jfrog/ide/common/ci/CiManagerBase.java b/src/main/java/com/jfrog/ide/common/ci/CiManagerBase.java index 77a45795..c401eaa3 100644 --- a/src/main/java/com/jfrog/ide/common/ci/CiManagerBase.java +++ b/src/main/java/com/jfrog/ide/common/ci/CiManagerBase.java @@ -62,12 +62,12 @@ public CiManagerBase(Path cachePath, String projectName, Log log, ServerConfig s /** * Build the CI tree in a producer-consumer method. - * The producer download build-info artifacts from artifactory, save them in cache and produce the build + * The producer downloads build-info artifacts from Artifactory, saves them in cache and produces the build * general info to the consumer. - * The consumer download build scan results from Xray, save them in cache and populate the CI tree with nodes + * The consumer downloads build scan results from Xray, saves them in cache and populates the CI tree with nodes * containing only the build general info of the builds. *
- * When the produce-consumer job is done, the CI tree contains only general information on the builds.
+ * When the producer-consumer job is done, the CI tree contains only general information on the builds.
* The build dependencies, artifacts and Xray scan results is stored in cache to save RAM.
*
* @param buildsPattern - The build pattern configured in the IDE configuration
diff --git a/src/main/java/com/jfrog/ide/common/npm/NpmTreeBuilder.java b/src/main/java/com/jfrog/ide/common/npm/NpmTreeBuilder.java
index 99274158..e288d3d7 100644
--- a/src/main/java/com/jfrog/ide/common/npm/NpmTreeBuilder.java
+++ b/src/main/java/com/jfrog/ide/common/npm/NpmTreeBuilder.java
@@ -62,7 +62,7 @@ public DepTree buildTree(Log logger) throws IOException {
}
JsonNode prodResults = npmList(Lists.newArrayList("--prod", "--package-lock-only"));
if (prodResults.get("problems") != null) {
- logger.warn("Errors occurred during building the Npm dependency tree. " +
+ logger.warn("Errors occurred while building the Npm dependency tree. " +
"The dependency tree may be incomplete:\n" + prodResults.get("problems").toString());
}
JsonNode devResults = npmList(Lists.newArrayList("--dev", "--package-lock-only"));
diff --git a/src/main/java/com/jfrog/ide/common/utils/PackageFileFinder.java b/src/main/java/com/jfrog/ide/common/utils/PackageFileFinder.java
index 84dd6640..d64820a7 100644
--- a/src/main/java/com/jfrog/ide/common/utils/PackageFileFinder.java
+++ b/src/main/java/com/jfrog/ide/common/utils/PackageFileFinder.java
@@ -48,7 +48,7 @@ public PackageFileFinder(Set