Chris Povirk
Chris Povirk
OK, 6 months later, I finally made some time to try to understand things instead of blindly changing `?`s :) And yes, all I needed to do was make the...
I realized that I never hit "Re-request review." Again, though, I know you'd already indicated that you probably wouldn't merge this PR anytime soon (possibly never, in fact :)), so...
I could see an argument that `Immutable*Array` should mirror `ImmutableList` except when we have a specific reason that a method is dangerous there. (Then again, I wish we had named...
We might not have questioned the name, given preexisting `Iterables.reverse` from way back in 2006. And of course `Iterables.reverse` is even worse (since some `Iterable` types are mutable), and we...
Trying to tie together various internal and external discussions over these past months: - The CVE update is https://github.com/google/cvelist/pull/1. - We don't think that https://github.com/google/guava/pull/5324 is enough: It could fix...
One thing for us to think more about: While I feel pretty safe autoreplacing Google's usage of this method on the server with `nio` (at least after [some earlier testing](https://github.com/google/guava/pull/5324#issuecomment-732993392)),...
Eek, I hope I did not just say something completely false :) I will see what I can dig up about `java.io.tmpdir` on Android.
[The Android docs for `System.getProperties()`](https://developer.android.com/reference/java/lang/System#getProperties()) claim that `java.io.tmpdir` is set to `/sdcard`. Presumably that is a shared directory. I suppose it's conceivable that files there magically are restricted to the...
If we had the guts, we would deprecate all `ImmutableMultimap` creation APIs :( Documentation of the behavior would be a good idea, but there's never a reason to prefer the...
The ongoing discussion on the linked issue reminds me of a couple other things: - We should specifically warn people about `transform` and other lazily computed views. - We should...