From f575215eda12d81ee46cb8d77d49cceab8256086 Mon Sep 17 00:00:00 2001 From: qlido Date: Mon, 8 Apr 2024 10:07:47 +0900 Subject: [PATCH] chore(crlf): add .gitattributes eol lf --- .gitattributes | 1 + .../project/bumawiki/domain/coin/service/PriceScheduler.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..94f480de --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf \ No newline at end of file diff --git a/src/main/java/com/project/bumawiki/domain/coin/service/PriceScheduler.java b/src/main/java/com/project/bumawiki/domain/coin/service/PriceScheduler.java index 1cbe36ad..f2abccd6 100644 --- a/src/main/java/com/project/bumawiki/domain/coin/service/PriceScheduler.java +++ b/src/main/java/com/project/bumawiki/domain/coin/service/PriceScheduler.java @@ -21,10 +21,10 @@ @Component @RequiredArgsConstructor public class PriceScheduler { + private static final Long CHANGE_MONEY_RANGE = 200000L; private final PriceRepository priceRepository; private final TradeRepository tradeRepository; private final CoinAccountRepository coinAccountRepository; - private static final Long CHANGE_MONEY_RANGE = 200000L; @Scheduled(fixedRate = 180000) void changePrice() {