fixed method visibility

This commit is contained in:
Luca Frosini 2023-02-02 16:38:15 +01:00
parent 7129eee9f1
commit 7307eefeab
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class Tree {
this.allowMultipleInheritance = allowMultipleInheritance;
}
public void createUsageKnowledge(Type type) {
protected void createUsageKnowledge(Type type) {
if(type.getAccessType() != AccessType.RESOURCE) {
return;
}