Skip to content

Commit

Permalink
hotfix: 상수 컴파일 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
yo0oni committed Aug 13, 2024
1 parent 0cf6fb0 commit 8ea621d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ public enum ParsingConstants {
PRICE_PREFIX("("),
PRICE_SUFFIX(")"),
DETAIL_PREFIX("- "),
DETAIL_SUFFIX(": "),
PRICE_FREE("무료"),
PRICE_VAR("변동"),
DEFAULT_PRICE(0.0),
DETAIL_SUFFIX(": "),
DEFAULT_COORDINATE(0.0);
private final String stringValue;
private final Double doubleValue;
Expand Down

0 comments on commit 8ea621d

Please sign in to comment.