Skip to content

Commit

Permalink
Merge pull request #22 from protegeproject/filtered-hierarchies
Browse files Browse the repository at this point in the history
Remove sealed interface and downgrade to Java 17
  • Loading branch information
matthewhorridge authored Oct 17, 2024
2 parents cf5a946 + 3989fab commit e7e7019
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
<commonmark.version>0.11.0</commonmark.version>
<lucene.version>8.5.2</lucene.version>
<java.version>21</java.version>
<java.version>17</java.version>
<spring-cloud.version>2020.0.3</spring-cloud.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@JsonSubTypes.Type(DataPropertyHierarchyDescriptor.class),
@JsonSubTypes.Type(AnnotationPropertyHierarchyDescriptor.class)
})
public sealed interface HierarchyDescriptor permits ClassHierarchyDescriptor, ObjectPropertyHierarchyDescriptor, DataPropertyHierarchyDescriptor, AnnotationPropertyHierarchyDescriptor {
public interface HierarchyDescriptor {


}

0 comments on commit e7e7019

Please sign in to comment.