There are cases where we know that some things are going to be
Nullable. Since few read annotations personally, seems ideal to just
swap out @Nullable for Optional<X> (at least in fields). Does anyone
have an idea how to write a gson type adapter for this?
-A
Are we happy with the fact that replacing the annotation with Optional
means that code will break because the fields now have new types?
ap