From b48655165a507a7ee724953025c146d1dada09ec Mon Sep 17 00:00:00 2001 From: Matthew Horridge Date: Tue, 21 May 2024 11:33:20 -0700 Subject: [PATCH] Fix broken stuff from last commit --- .../protege/github/issues/GitHubIssues.java | 16 ---------------- .../protege/github/issues/GitHubLabel.java | 3 +-- .../protege/github/issues/GitHubState.java | 3 +-- 3 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 src/main/java/edu/stanford/protege/github/issues/GitHubIssues.java diff --git a/src/main/java/edu/stanford/protege/github/issues/GitHubIssues.java b/src/main/java/edu/stanford/protege/github/issues/GitHubIssues.java deleted file mode 100644 index f006585..0000000 --- a/src/main/java/edu/stanford/protege/github/issues/GitHubIssues.java +++ /dev/null @@ -1,16 +0,0 @@ -package edu.stanford.protege.github.issues; - -import com.google.gwt.core.client.EntryPoint; - -/** - * Matthew Horridge - * Stanford Center for Biomedical Informatics Research - * 2024-05-18 - */ -public class GitHubIssues implements EntryPoint { - - @Override - public void onModuleLoad() { - - } -} diff --git a/src/main/java/edu/stanford/protege/github/issues/GitHubLabel.java b/src/main/java/edu/stanford/protege/github/issues/GitHubLabel.java index a39f221..7762aaa 100644 --- a/src/main/java/edu/stanford/protege/github/issues/GitHubLabel.java +++ b/src/main/java/edu/stanford/protege/github/issues/GitHubLabel.java @@ -3,7 +3,6 @@ import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; -import com.google.gwt.user.client.rpc.IsSerializable; import javax.annotation.Nullable; import java.util.Objects; @@ -20,7 +19,7 @@ public record GitHubLabel(@JsonProperty("id") long id, @JsonProperty("name") @Nullable String name, @JsonProperty("color") @Nullable String color, @JsonProperty("default") boolean isDefault, - @JsonProperty("description") @Nullable String description) implements IsSerializable { + @JsonProperty("description") @Nullable String description) { public GitHubLabel(@JsonProperty("id") long id, @JsonProperty("node_id") @Nullable String nodeId, diff --git a/src/main/java/edu/stanford/protege/github/issues/GitHubState.java b/src/main/java/edu/stanford/protege/github/issues/GitHubState.java index 9884e7b..8f1dd95 100644 --- a/src/main/java/edu/stanford/protege/github/issues/GitHubState.java +++ b/src/main/java/edu/stanford/protege/github/issues/GitHubState.java @@ -1,14 +1,13 @@ package edu.stanford.protege.github.issues; import com.fasterxml.jackson.annotation.JsonProperty; -import com.google.gwt.user.client.rpc.IsSerializable; /** * Matthew Horridge * Stanford Center for Biomedical Informatics Research * 2023-07-11 */ -public enum GitHubState implements IsSerializable { +public enum GitHubState { @JsonProperty("open") OPEN,