when compiling generated code in Xcode 8 directly in a swift-3 setup the compiler generates a ton of the following warnings:
"Pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)"
A ton being > 1000 for a 50 class project or so..
Anything we can do about this?
--
Michel
--
You received this message because you are subscribed to the Google Groups "j2objc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to j2objc-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
i had noticed the @Nullable @NonNull behaviour of the compiler and started using it... But haven't converted entire code base yet :)
Yep, enums cause these warnings too. Obviously a problem that should be sorted at j2objc side as there's nothing you can do about it, other than suppress them. I reverted back to 1.1 which works fine.