Skip to content

Commit

Permalink
Make BusinessCalendar and BusinessCalendarXMLParser public
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Jan 12, 2024
1 parent 74ac3e1 commit b71c51d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private YearData getYearData(final int year) {
* is different from the schedule for a standard business day or weekend.
* @throws RequirementFailure if any argument is null.
*/
BusinessCalendar(final String name, final String description, final ZoneId timeZone,
public BusinessCalendar(final String name, final String description, final ZoneId timeZone,
final LocalDate firstValidDate, final LocalDate lastValidDate,
final CalendarDay<LocalTime> standardBusinessDay, final Set<DayOfWeek> weekendDays,
final Map<LocalDate, CalendarDay<Instant>> holidays) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
/**
* A parser for reading business calendar XML files.
*
* <p>
* Business calendar XML files should be formatted as:
*
* <pre>
Expand Down Expand Up @@ -56,7 +57,7 @@
* }
* </pre>
*/
class BusinessCalendarXMLParser {
public final class BusinessCalendarXMLParser {

private static class BusinessCalendarInputs {
private String calendarName;
Expand Down

0 comments on commit b71c51d

Please sign in to comment.