Skip to content

Commit 5c39ecc

Browse files
committed
Fix missing semicolons
1 parent ae97ff6 commit 5c39ecc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

core/src/main/java/io/snyk/plugins/artifactory/scanner/ScannerModule.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ private void filter(MonitoredArtifact artifact) {
9999
Ignores ignores = Ignores.read(new RepositoryArtifactProperties(repoPath, repositories));
100100
Instant lastModifiedDate = getLastModifiedDate(repoPath);
101101

102-
LOG.debug("Retrieved last modified date of {} for {}", lastModifiedDate, repoPath)
102+
LOG.debug("Retrieved last modified date of {} for {}", lastModifiedDate, repoPath);
103103

104104
// Only apply lastModifiedDate to packages from remote repositories.
105105
if(lastModifiedDateRemoteOnly()) {
106-
LOG.debug("Last modified date applied to only remote repositories.")
106+
LOG.debug("Last modified date applied to only remote repositories.");
107107
if (!isRemoteRepository(repoPath)) {
108-
LOG.debug("Repository provided is not a remote repository, skipping last modified date check.")
108+
LOG.debug("Repository provided is not a remote repository, skipping last modified date check.");
109109
lastModifiedDate = null;
110110
}
111111
}
@@ -119,7 +119,7 @@ private Instant getLastModifiedDate(RepoPath repoPath) {
119119
Instant lastModified = Instant.ofEpochMilli(itemInfo.getLastModified());
120120
return lastModified;
121121
} else {
122-
LOG.debug("Unable to retrieve ItemInfo for {}, could not retrieve last modified date", repoPath)
122+
LOG.debug("Unable to retrieve ItemInfo for {}, could not retrieve last modified date", repoPath);
123123
}
124124
} catch (Exception e) {
125125
LOG.debug("Could not retrieve last modified date for {}: {}", repoPath, e);

0 commit comments

Comments
 (0)