Skip to content

classgraph-4.8.26

Compare
Choose a tag to compare
@lukehutch lukehutch released this 25 Apr 18:54
  • Fixes for ../ path segment support in Class-Path entries in manifest files (#340, thanks to @masoudamri for reporting).
  • Reduce memory usage by interning all strings obtained from classfile constant pools. This will result in significant memory savings for large scans, at a 1%-5% overhead in scan time. (A custom string interner is used that is backed by a ConcurrentHashMap, rather than using String.intern(), so that the memory can be freed after the scan.) (#338, thanks to @laonawuli for reporting)