Skip to content

Commit

Permalink
Merge pull request #3236 from HenrikJannsen/remove-unused-field
Browse files Browse the repository at this point in the history
Remove unused field
  • Loading branch information
HenrikJannsen authored Feb 27, 2025
2 parents 4342ba7 + efcbcdc commit 42598a8
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,8 @@
import bisq.desktop.common.view.View;
import bisq.desktop.components.controls.MaterialTextField;
import bisq.desktop.components.controls.Switch;
import bisq.desktop.components.controls.validator.NumberValidator;
import bisq.desktop.components.controls.validator.ValidatorBase;
import bisq.desktop.main.content.settings.SettingsViewUtils;
import bisq.i18n.Res;
import bisq.user.reputation.ReputationScore;
import javafx.beans.binding.Bindings;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
Expand All @@ -34,10 +31,6 @@

@Slf4j
public class TradeSettingsView extends View<VBox, TradeSettingsModel, TradeSettingsController> {
private static final ValidatorBase REPUTATION_SCORE_VALIDATOR =
new NumberValidator(Res.get("settings.trade.minReputationScore.invalid", ReputationScore.MAX_VALUE),
0, ReputationScore.MAX_VALUE);

private static final double TEXT_FIELD_WIDTH = 500;

private final Switch closeMyOfferWhenTaken;
Expand Down

0 comments on commit 42598a8

Please sign in to comment.