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
Instead of:
abstract class DataRelationship extends Term, DirectedBinaryRelationshipKind { ... op Datatype[1] target() } class EntityScalarDataProperty extends DataRelationship, DataRelationshipFromEntity, DataRelationshipToScalar { ... op Datatype[1] target() { range } } class ScalarDataProperty extends DataRelationship, DataRelationshipFromStructure, DataRelationshipToScalar { ... op Datatype[1] target() { range } } class EntityStructuredDataProperty extends DataRelationship, DataRelationshipFromEntity, DataRelationshipToStructure { ... op Datatype[1] target() { range } } class StructuredDataProperty extends DataRelationship, DataRelationshipFromStructure, DataRelationshipToStructure { ... op Datatype[1] target() { range } }
Consider replacing the return type with the most specific DataType appropriate:
DataType
abstract class DataRelationship extends Term, DirectedBinaryRelationshipKind { ... op Datatype[1] target() } class EntityScalarDataProperty extends DataRelationship, DataRelationshipFromEntity, DataRelationshipToScalar { ... op DataRange[1] target() { range } } class ScalarDataProperty extends DataRelationship, DataRelationshipFromStructure, DataRelationshipToScalar { ... op DataRange[1] target() { range } } class EntityStructuredDataProperty extends DataRelationship, DataRelationshipFromEntity, DataRelationshipToStructure { ... op Structure[1] target() { range } } class StructuredDataProperty extends DataRelationship, DataRelationshipFromStructure, DataRelationshipToStructure { ... op Structure[1] target() { range } }
The text was updated successfully, but these errors were encountered:
Ditto for source.
Sorry, something went wrong.
NicolasRouquette
No branches or pull requests
Instead of:
Consider replacing the return type with the most specific
DataType
appropriate:The text was updated successfully, but these errors were encountered: