Skip to content

Commit

Permalink
Adjust class level annoations
Browse files Browse the repository at this point in the history
  • Loading branch information
ghubstan committed Jan 3, 2021
1 parent 0638701 commit c2c1ac2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.util.Objects;

import lombok.Getter;
import lombok.Setter;

import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
Expand All @@ -38,7 +37,6 @@
*/
@Immutable
@Getter
@Setter
public class TxOutput extends BaseTxOutput implements PersistablePayload, ImmutableDaoStateModel {
public static TxOutput fromTempOutput(TempTxOutput tempTxOutput) {
return new TxOutput(tempTxOutput.getIndex(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
import bisq.common.app.Version;
import bisq.common.proto.network.NetworkEnvelope;

import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.Getter;
import lombok.ToString;

@Value
@EqualsAndHashCode(callSuper = false)
@Getter
@ToString
public class GetInventoryRequest extends NetworkEnvelope {
private final String version;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
import java.util.HashMap;
import java.util.Map;

import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.Getter;
import lombok.ToString;

@Value
@EqualsAndHashCode(callSuper = false)
@Getter
@ToString
public class GetInventoryResponse extends NetworkEnvelope {
private final Map<InventoryItem, String> inventory;

Expand Down

0 comments on commit c2c1ac2

Please sign in to comment.