mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-21 06:51:38 +00:00
This eliminates one of the jars that Heritrix depends on that isn't in Maven Central. There were only two usages. The first usage was a method in a CrawlerJournal which as far as I can tell is unused and can be removed. The second usage was an unnecessary use of MutableString as a line buffer when saving cookies to a file. Since there doesn't seem any particular reason buffer per-line here let's just use a BufferedWriter instead on the whole file which is also slightly simpler and more efficient.