Kurt Alfred Kluever

Results 50 comments of Kurt Alfred Kluever

I wonder why I made `EvictingQueue` extend `ForwardingQueue` instead of `ForwardingDeque`...hmm. Maybe we didn't want the conceptual weight of all of the `Deque` API cluttering up the API?

I think we'd want to hear some use cases first for why you'd want to iterate an `EvictingQueue` backwards before we make any changes.

> it doesn't matter in which time zone to add 15 seconds to an `Instant`, the result is the same Unless of course you're adding 15 seconds during a DST...

Does it ever make sense to directly call a time-based accessor on a statically typed `DatePeriod` though?

I'm not as familiar with deprecation rules/best practices in Kotlin, but in Java, deprecated just means "discouraged", not "this is going away". We have some APIs that are "born deprecated"...

I'm still collecting some data, but the recent `Kiev` -> `Kyiv` rename (2022b and onward) cause a few production outages at Google for folks still using JodaTime (since JodaTime immediately...

Re: "How do you currently do the plumbing to pass the duration through multiple layers?" I'm not sure I fully understand the question, but in order to use a `long,...

@eraneverlaw warnings can easily be modified over time because they *are* backwards compatible. Modifications to errors (on the other hand), are not backwards compatible. It sounds like you chose to...

Re. "warnings overload" - you must face this when upgrading your JDK and running into new deprecations, no? How do you manage that? I suppose we _could_ add some degree...