Skip to content

Commit

Permalink
[cleanup] Add missing serialVersion UID at 1L
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Dec 19, 2023
1 parent 177dbbd commit e0c9824
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
*/
public class ProcessingException extends Exception {

private static final long serialVersionUID = 1L;

public ProcessingException() {
super();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

public final class CoverallsResponse implements JsonObject {

private static final long serialVersionUID = 1L;
private final String message;
private final boolean error;
private final String url;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@

public class Git implements JsonObject {

private static final long serialVersionUID = 1L;

@JsonIgnore
private final File baseDir;

Expand Down Expand Up @@ -68,6 +70,8 @@ public List<Remote> getRemotes() {
}

public static class Head implements Serializable {
private static final long serialVersionUID = 1L;

@JsonProperty("id")
private final String id;

Expand Down Expand Up @@ -121,6 +125,8 @@ public String getMessage() {
}

public static class Remote implements Serializable {
private static final long serialVersionUID = 1L;

@JsonProperty("name")
private final String name;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
import java.util.regex.Pattern;

public final class Source implements JsonObject {


private static final long serialVersionUID = 1L;

private static final Pattern NEWLINE = Pattern.compile("\r\n|\r|\n");
//private static final String CLASSIFIER_SEPARATOR = "#";

Expand Down

0 comments on commit e0c9824

Please sign in to comment.