michael-o commented on a change in pull request #67:
URL: https://github.com/apache/maven-resolver/pull/67#discussion_r475247446
##########
File path:
maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/TrackingFileManager.java
##########
@@ -45,35 +42,28 @@
public Properties read( File file )
{
- synchronized ( getLock( file ) )
+ FileInputStream stream = null;
+ try
{
- FileLock lock = null;
- FileInputStream stream = null;
- try
+ if ( !file.exists() )
Review comment:
Same comment as
https://github.com/apache/maven-resolver/pull/67#issuecomment-675411087. The
intent is to remove sync only. Improvements should be a separate issue.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]