Re: RFR: 8337838: Remove unused methods from ChronoLocalDateImpl

2024-08-07 Thread Roger Riggs
On Fri, 19 Jul 2024 09:52:50 GMT, Andrey Turbanov wrote: > A few methods in `java.time.chrono.ChronoLocalDateImpl` are unused and could > be removed: > 1. plusWeeks(long) > 2. minusYears(long) > 3. minusMonths(long) > 4. minusWeeks(long) > 5. minusDays(long) > > Tested `test/jdk/java/time` on L

Re: RFR: 8337838: Remove unused methods from ChronoLocalDateImpl

2024-08-07 Thread Stephen Colebourne
On Fri, 19 Jul 2024 09:52:50 GMT, Andrey Turbanov wrote: > A few methods in `java.time.chrono.ChronoLocalDateImpl` are unused and could > be removed: > 1. plusWeeks(long) > 2. minusYears(long) > 3. minusMonths(long) > 4. minusWeeks(long) > 5. minusDays(long) > > Tested `test/jdk/java/time` on L

Re: RFR: 8337838: Remove unused methods from ChronoLocalDateImpl

2024-08-06 Thread Andrey Turbanov
On Tue, 6 Aug 2024 19:46:02 GMT, Roger Riggs wrote: >> A few methods in `java.time.chrono.ChronoLocalDateImpl` are unused and could >> be removed: >> 1. plusWeeks(long) >> 2. minusYears(long) >> 3. minusMonths(long) >> 4. minusWeeks(long) >> 5. minusDays(long) >> >> Tested `test/jdk/java/time`

Re: RFR: 8337838: Remove unused methods from ChronoLocalDateImpl

2024-08-06 Thread Roger Riggs
On Fri, 19 Jul 2024 09:52:50 GMT, Andrey Turbanov wrote: > A few methods in `java.time.chrono.ChronoLocalDateImpl` are unused and could > be removed: > 1. plusWeeks(long) > 2. minusYears(long) > 3. minusMonths(long) > 4. minusWeeks(long) > 5. minusDays(long) > > Tested `test/jdk/java/time` on L

RFR: 8337838: Remove unused methods from ChronoLocalDateImpl

2024-08-05 Thread Andrey Turbanov
A few methods in `java.time.chrono.ChronoLocalDateImpl` are unused and could be removed: 1. plusWeeks(long) 2. minusYears(long) 3. minusMonths(long) 4. minusWeeks(long) 5. minusDays(long) Tested `test/jdk/java/time` on Linux x64 release - Commit messages: - [PATCH] Remove unused me