Skip to content

Commit

Permalink
Lombok optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
Pil0tXia committed Apr 2, 2024
1 parent a540e8a commit e9c7ce9
Showing 1 changed file with 1 addition and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ public void close() {
}
}

@Data
private static class SubscriptionInfo {

private transient SubscriptionItem subscriptionItem;
Expand All @@ -314,25 +315,5 @@ private static class SubscriptionInfo {
this.url = url;
this.grpcType = grpcType;
}

public GrpcType getGrpcType() {
return grpcType;
}

public SubscriptionItem getSubscriptionItem() {
return subscriptionItem;
}

public void setSubscriptionItem(final SubscriptionItem subscriptionItem) {
this.subscriptionItem = subscriptionItem;
}

public String getUrl() {
return url;
}

public void setUrl(final String url) {
this.url = url;
}
}
}

0 comments on commit e9c7ce9

Please sign in to comment.