Skip to content

Commit

Permalink
Remove redundant semi-colons after enum declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Nov 16, 2023
1 parent 5431db6 commit ce85971
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/spring/calendar/github/Milestone.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2016-2019 the original author or authors.
* Copyright 2016-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -39,7 +39,7 @@ enum State {
OPEN, @JsonProperty("closed")
CLOSED

};
}

private final String title;

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/spring/calendar/release/Release.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2016-2019 the original author or authors.
* Copyright 2016-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -46,7 +46,7 @@ public enum Status {
*/
UNKNOWN

};
}

private final String project;

Expand Down

0 comments on commit ce85971

Please sign in to comment.