Skip to content

Commit

Permalink
상수 접근 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hades3 committed Oct 10, 2024
1 parent b1df8d7 commit e71f0ef
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import com.gildedrose.Item;

public abstract class UpdateLogic {
public static final int MAX_QUALITY = 50;
public static final int MIN_QUALITY = 0;
public static final int DOWN_MULTIPLE = 2;
private static final int MAX_QUALITY = 50;
private static final int MIN_QUALITY = 0;
private static final int DOWN_MULTIPLE = 2;

protected void decreaseSellIn(Item item) {
item.sellIn -= 1;
Expand Down

0 comments on commit e71f0ef

Please sign in to comment.