Skip to content

Commit

Permalink
feat: remove no arguments constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mvarlic committed Aug 20, 2024
1 parent 35df70b commit fc951d1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main/java/cl/transbank/model/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
/**
* This abstract class represents the options that can be set for a transaction.
*/
@NoArgsConstructor
@AllArgsConstructor
public abstract class Options implements Cloneable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* This class represents the options for a Patpass transaction.
*/
@ToString
@AllArgsConstructor
public class PatpassOptions extends Options {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* This class represents the options for a Webpay transaction.
*/
@ToString
@AllArgsConstructor
public class WebpayOptions extends Options {

/**
Expand Down

0 comments on commit fc951d1

Please sign in to comment.