-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Port classpath improvements #9615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
test performance please |
performance test scheduled: 15 job(s) in queue, 1 running. |
} | ||
|
||
protected def getDir(dirs: mutable.Map[String, DirEntry], entry: ZipEntry): DirEntry = { | ||
protected def getDir(dirs: java.util.Map[String, DirEntry], entry: ZipEntry): DirEntry = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I measured that now mutable.HashMap is actually faster than java.util.HashMap. So, no need to change the implementation. This holds for all such changes.
Performance test finished successfully: Visit http://dotty-bench.epfl.ch/9615/ to see the changes. Benchmarks is based on merging with master (1fb07cb) |
test performance please |
performance test scheduled: 15 job(s) in queue, 1 running. |
Performance test finished successfully: Visit http://dotty-bench.epfl.ch/9615/ to see the changes. Benchmarks is based on merging with master (387c562) |
This PR broke the bootstrapped build on Windows: #9642 |
Port classpath improvements
scala/scala#8356