Re: RFR: 8358533: Improve performance of java.io.Reader.readAllLines [v6]

2025-06-27 Thread Brian Burkhalter
On Fri, 27 Jun 2025 15:36:29 GMT, Roger Riggs wrote: >> Brian Burkhalter has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8358533: Test change accidentally omitted from previous commit > > src/java.base/share/classes/java/io/Reader.java l

Re: RFR: 8358533: Improve performance of java.io.Reader.readAllLines [v6]

2025-06-27 Thread Roger Riggs
On Fri, 27 Jun 2025 15:03:05 GMT, Brian Burkhalter wrote: >> Replaces the implementation `readAllCharsAsString().lines().toList()` with >> reading into a temporary `char` array which is then processed to detect line >> terminators and copy non-terminating characters into strings which are added

Re: RFR: 8358533: Improve performance of java.io.Reader.readAllLines [v6]

2025-06-27 Thread Brian Burkhalter
> Replaces the implementation `readAllCharsAsString().lines().toList()` with > reading into a temporary `char` array which is then processed to detect line > terminators and copy non-terminating characters into strings which are added > to the list. Brian Burkhalter has updated the pull request