Skip to content

Commit

Permalink
Fix broken stuff from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhorridge committed May 21, 2024
1 parent 2b4b115 commit b486551
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
16 changes: 0 additions & 16 deletions src/main/java/edu/stanford/protege/github/issues/GitHubIssues.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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,
Expand Down
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit b486551

Please sign in to comment.