You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Java2Swift: Use @_nonoverride on generated convenience initializers
Swift has inheritance of initializers, while Java does not have inheritance
of constructors. This means that Swift's attempt to treat a convenience
initializer as an override within a subclass can cause problems with
mismatched signatures. Use `@_nonoverride` to avoid this problem.
0 commit comments