We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09453fa commit e01ab9fCopy full SHA for e01ab9f
1 file changed
core/src/main/java/io/snyk/plugins/artifactory/scanner/ScannerModule.java
@@ -108,7 +108,7 @@ private Optional<Instant> getCreatedDate(RepoPath repoPath) {
108
if (itemInfo != null) {
109
LocalDate created = Instant.ofEpochMilli(createdDate).atZone(ZoneId.systemDefault()).toLocalDate();
110
if (created != null) {
111
- return Optional.of(created.atStartOfDay(ZoneId.systemDefault()).toInstant(););
+ return Optional.of(created.atStartOfDay(ZoneId.systemDefault()).toInstant());
112
}
113
114
} catch (Exception e) {
0 commit comments