Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Mar 29, 2023
2 parents 5959abf + 811b91a commit 11a6c6b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,10 @@ protected void updateDefinitions() {
} else {
objectClass = objectClassDef.getTypeName();
if (getIntent() == null) {
intent = ((ResourceObjectTypeDefinitionImpl) objectClassDef).getIntent();
ResourceObjectTypeDefinition typeDefinition = objectClassDef.getTypeDefinition();
if (typeDefinition != null) {
intent = typeDefinition.getIntent();
}
}
}
}
Expand Down

0 comments on commit 11a6c6b

Please sign in to comment.