Skip to content

Commit

Permalink
Fix #226: Make Device from UserAgent class Serializable (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
jandusil authored Nov 15, 2023
1 parent 813e84e commit e3aa3ff
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
import lombok.Data;
import lombok.extern.slf4j.Slf4j;

import java.io.Serial;
import java.io.Serializable;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

Expand All @@ -30,7 +32,10 @@
public final class UserAgent {

@Data
public static class Device {
public static class Device implements Serializable {

@Serial
private static final long serialVersionUID = -1710283885057764817L;
private String networkVersion;
private String language;
private String connection;
Expand Down

0 comments on commit e3aa3ff

Please sign in to comment.