-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c8c18b
commit 68859ac
Showing
6 changed files
with
42 additions
and
17 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
Plot/src/test/java/io/deephaven/plot/axistransformations/CalendarInit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* Copyright (c) 2016-2023 Deephaven Data Labs and Patent Pending | ||
*/ | ||
package io.deephaven.plot.axistransformations; | ||
|
||
import io.deephaven.time.calendar.BusinessCalendar; | ||
import io.deephaven.time.calendar.Calendars; | ||
|
||
final class CalendarInit { | ||
static { | ||
for (BusinessCalendar calendar : Calendars.calendarsFromConfiguration()) { | ||
Calendars.addCalendar(calendar); | ||
} | ||
} | ||
|
||
static void noop() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
engine/time/src/test/java/io/deephaven/time/calendar/CalendarInit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* Copyright (c) 2016-2023 Deephaven Data Labs and Patent Pending | ||
*/ | ||
package io.deephaven.time.calendar; | ||
|
||
final class CalendarInit { | ||
|
||
static { | ||
for (BusinessCalendar calendar : Calendars.calendarsFromConfiguration()) { | ||
Calendars.addCalendar(calendar); | ||
} | ||
} | ||
|
||
static void noop() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters