Skip to content

Commit

Permalink
fix: remove unused dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lotharking committed Sep 27, 2024
1 parent 5918824 commit bec4c1d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
import io.twentysixty.sa.client.model.message.BaseMessage;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Setter
@Getter
@ToString
public class CallAcceptRequestMessage extends BaseMessage {

private static final long serialVersionUID = -2840211856886973682L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
import com.fasterxml.jackson.annotation.JsonInclude.Include;

import io.twentysixty.sa.client.model.message.BaseMessage;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Setter
@Getter
@ToString
public class CallEndRequestMessage extends BaseMessage {

private static final long serialVersionUID = -2840211856886973682L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
import io.twentysixty.sa.client.model.message.BaseMessage;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Setter
@Getter
@ToString
public class CallOfferRequestMessage extends BaseMessage {

private static final long serialVersionUID = -2840211856886973682L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
import com.fasterxml.jackson.annotation.JsonInclude.Include;

import io.twentysixty.sa.client.model.message.BaseMessage;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Setter
@Getter
@ToString
public class CallRejectRequestMessage extends BaseMessage {

private static final long serialVersionUID = -2840211856886973682L;
Expand Down

0 comments on commit bec4c1d

Please sign in to comment.