Skip to content

Commit

Permalink
Review Finding 6: Move LabelWithSignedNumber to package 'core.gui'
Browse files Browse the repository at this point in the history
  • Loading branch information
sgcr committed Sep 3, 2024
1 parent 235e764 commit 0fa976c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package tool.arenasizer;
package core.gui;

import core.gui.theme.HOColorName;
import core.gui.theme.ThemeManager;
Expand All @@ -15,7 +15,7 @@
import static org.apache.commons.lang3.StringUtils.EMPTY;
import static org.apache.commons.lang3.compare.ComparableUtils.is;

class LabelWithSignedNumber extends JLabel {
public class LabelWithSignedNumber extends JLabel {

private static final String PLUS_SIGN = "+";

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tool/arenasizer/ArenaInfoPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import java.math.RoundingMode;
import java.util.Optional;

import static core.gui.LabelWithSignedNumber.percentString;
import static org.apache.commons.lang3.StringUtils.EMPTY;
import static tool.arenasizer.LabelWithSignedNumber.percentString;

public class ArenaInfoPanel extends JPanel {

Expand Down
1 change: 1 addition & 0 deletions src/main/java/tool/arenasizer/CapacityPanel.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package tool.arenasizer;

import core.gui.LabelWithSignedNumber;
import core.model.HOVerwaltung;

import javax.imageio.ImageIO;
Expand Down

0 comments on commit 0fa976c

Please sign in to comment.