cstamas commented on code in PR #201: URL: https://github.com/apache/maven-resolver/pull/201#discussion_r995934644
########## maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/checksum/SummaryFileTrustedChecksumsSource.java: ########## @@ -245,4 +255,35 @@ public void close() // nop } } + + @SuppressWarnings( "unchecked" ) + private void saveSessionRecordedLines( RepositorySystemSession session ) + { + Map<Path, Set<String>> recordedLines = (Map<Path, Set<String>>) session.getData().get( RECORDING_KEY ); + if ( recordedLines == null || recordedLines.isEmpty() ) + { + return; + } + + ArrayList<Exception> exceptions = new ArrayList<>(); + for ( Map.Entry<Path, Set<String>> entry : recordedLines.entrySet() ) + { + Path file = entry.getKey(); + Set<String> lines = entry.getValue(); + if ( !lines.isEmpty() ) + { + LOGGER.info( "Saving {} checksums to '{}'", lines.size(), file ); + try + { + Files.createDirectories( file.getParent() ); + Files.write( file, lines ); Review Comment: yes, a files are named as checksums-${repo.id}.${checksum.ext} -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org