Skip to content

Commit

Permalink
chore: Remove jodd dependency leftovers (#3028)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpro7 committed Feb 7, 2024
1 parent 9ea8d6e commit 21a4c83
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .scala-steward.conf
@@ -1,9 +1,7 @@
# ignore the following dependencies:
# jodd -> hard to update due to removal of JDateTime class in newer versions used in DateUtilV1 to calendars conversions
# graph-core -> hard to update due to breaking changes

updates.ignore = [
{ groupId = "org.jodd", artifactId = "jodd" },
{ groupId = "org.scala-graph", artifactId = "graph-core"}
]

Expand Down
Expand Up @@ -432,7 +432,7 @@ object DateUtil {
* @param date a [[GregorianCalendar]].
* @return a Julian Day Number.
*/
def convertDateToJulianDayNumber(date: GregorianCalendar): Int =
private def convertDateToJulianDayNumber(date: GregorianCalendar): Int =
date.toInstant.atZone(UTC).toLocalDate.getLong(JulianFields.JULIAN_DAY).toInt

/**
Expand Down

0 comments on commit 21a4c83

Please sign in to comment.