Skip to content

Commit

Permalink
Remove sealed interface and downgrade to Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhorridge committed Oct 17, 2024
1 parent 01bccb8 commit 3989fab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-backend-api</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -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 3989fab

Please sign in to comment.