Skip to content

Commit

Permalink
Remove todos.
Browse files Browse the repository at this point in the history
  • Loading branch information
chipkent committed Jan 11, 2024
1 parent 847acd6 commit d7cee84
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ private YearData getYearData(final int year) {

// region Getters

// TODO: should there be a string equivalent?
/**
* Returns the first valid date for the business calendar.
*
Expand All @@ -175,7 +174,6 @@ public LocalDate firstValidDate() {
return firstValidDate;
}

// TODO: should there be a string equivalent?
/**
* Returns the last valid date for the business calendar.
*
Expand Down Expand Up @@ -2099,7 +2097,6 @@ public ZonedDateTime minusNonBusinessDays(final ZonedDateTime time, final int da
return plusNonBusinessDays(time, -days);
}

// TODO: should there be a string equivalent?
/**
* Adds a specified number of business days to the current date. Adding negative days is equivalent to subtracting
* days.
Expand All @@ -2117,7 +2114,6 @@ public LocalDate futureBusinessDate(final int days) {
return plusBusinessDays(calendarDate(), days);
}

// TODO: should there be a string equivalent?
/**
* Subtracts a specified number of business days from the current date. Subtracting negative days is equivalent to
* adding days.
Expand All @@ -2135,7 +2131,6 @@ public LocalDate pastBusinessDate(final int days) {
return minusBusinessDays(calendarDate(), days);
}

// TODO: should there be a string equivalent?
/**
* Adds a specified number of non-business days to the current date. Adding negative days is equivalent to
* subtracting days.
Expand All @@ -2153,7 +2148,6 @@ public LocalDate futureNonBusinessDate(final int days) {
return this.plusNonBusinessDays(calendarDate(), days);
}

// TODO: should there be a string equivalent?
/**
* Subtracts a specified number of non-business days to the current date. Subtracting negative days is equivalent to
* adding days.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public String toString() {

// region Now

// TODO: should there be a string equivalent?
/**
* The current date for the calendar.
*
Expand Down Expand Up @@ -119,7 +118,6 @@ public DayOfWeek dayOfWeek(final LocalDate date) {
return DateTimeUtils.dayOfWeek(date);
}

// TODO: should this return a String?
/**
* The current day of the week for the calendar.
*
Expand Down Expand Up @@ -397,7 +395,6 @@ public ZonedDateTime minusDays(final ZonedDateTime time, final int days) {
return plusDays(time, -days);
}

// TODO: should there be a string equivalent?
/**
* Adds a specified number of days to the current date. Adding negative days is equivalent to subtracting days.
*
Expand All @@ -409,7 +406,6 @@ public LocalDate futureDate(final int days) {
return plusDays(calendarDate(), days);
}

// TODO: should there be a string equivalent?
/**
* Subtracts a specified number of days from the current date. Subtracting negative days is equivalent to adding
* days.
Expand Down

0 comments on commit d7cee84

Please sign in to comment.