Skip to content

Commit

Permalink
Using Lombok generated setter for paymentDetails.
Browse files Browse the repository at this point in the history
  • Loading branch information
niyid committed Nov 4, 2019
1 parent b5f6d0d commit d023186
Showing 1 changed file with 1 addition and 5 deletions.
Expand Up @@ -75,7 +75,7 @@ public abstract class PaymentAccountPayload implements NetworkPayload, UsedForTr

@JsonExclude
@Getter(AccessLevel.NONE)
@Setter(AccessLevel.NONE)
@Setter
protected String paymentDetails;


Expand Down Expand Up @@ -125,10 +125,6 @@ protected protobuf.PaymentAccountPayload.Builder getPaymentAccountPayloadBuilder
///////////////////////////////////////////////////////////////////////////////////////////
// API
///////////////////////////////////////////////////////////////////////////////////////////

public void setPaymentDetails(String paymentDetails) {
this.paymentDetails = paymentDetails;
}

public abstract String getPaymentDetails();

Expand Down

1 comment on commit d023186

@niyid
Copy link
Contributor Author

@niyid niyid commented on d023186 Nov 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #3317

Please sign in to comment.