We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to changes in #321, the following custom data components now take in nullable custom data field sets (e.g. Set<AbstractCustomDataField>?).
Set<AbstractCustomDataField>?
When upgrading to the latest release, library users that define their own custom data will run into compiler errors in implementations of;
AbstractCustomDataCursor
AbstractCustomDataEntityMapper.Factory
AbstractCustomDataOperation
AbstractCustomDataOperation.Factory
Notify library users of this breaking change!
The text was updated successfully, but these errors were encountered:
Fix compile errors by making Set<AbstractCustomDataField> nullable -> Set<AbstractCustomDataField>?
Set<AbstractCustomDataField>
For example, change this...
internal class HandleNameMapperFactory { override fun create( ... includeFields: Set<HandleNameField> ) = HandleNameMapper(HandleNameDataCursor(cursor, includeFields)) }
to this...
internal class HandleNameMapperFactory { override fun create( ... includeFields: Set<HandleNameField>? ) = HandleNameMapper(HandleNameDataCursor(cursor, includeFields)) }
Sorry, something went wrong.
43275c6
This is included in release 0.3.2.
vestrel00
No branches or pull requests
Problem
Due to changes in #321, the following custom data components now take in nullable custom data field sets (e.g.
Set<AbstractCustomDataField>?
).When upgrading to the latest release, library users that define their own custom data will run into compiler errors in implementations of;
AbstractCustomDataCursor
AbstractCustomDataEntityMapper.Factory
AbstractCustomDataOperation
AbstractCustomDataOperation.Factory
Solution
Notify library users of this breaking change!
The text was updated successfully, but these errors were encountered: