Skip to content

Commit

Permalink
[bybit] fix date parse locale
Browse files Browse the repository at this point in the history
  • Loading branch information
harvey.yue committed Jan 26, 2025
1 parent 9b25a34 commit 5bf6e7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
public class BybitAdapters {

private static final ThreadLocal<SimpleDateFormat> OPTION_DATE_FORMAT =
ThreadLocal.withInitial(() -> new SimpleDateFormat("ddMMMyy"));
ThreadLocal.withInitial(() -> new SimpleDateFormat("ddMMMyy", Locale.US));
public static final List<String> QUOTE_CURRENCIES =
Arrays.asList("USDT", "USDC", "USDE", "EUR", "BRL", "PLN", "TRY", "SOL", "BTC", "ETH", "DAI",
"BRZ");
Expand Down

0 comments on commit 5bf6e7c

Please sign in to comment.