You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got a compile error in Intellij and when trying to build with Maven that this method was ambiguous since another method matched. Message in Intellij was:
"Ambiguous method call. Both toDate(Date, String...) in Conversions and toDate(Date, String, String...) in Conversions match."
I assume the other method Intellij and Maven are complaining about is com.univocity.parsers.conversions.Conversions toDate method with signature: public static DateConversion toDate(Date dateIfNull, String stringIfNull, String... dateFormats)
The text was updated successfully, but these errors were encountered:
When attempting to use com.univocity.parsers.conversions.Conversions toDate method
to perform conversions on a record
parser.getRecordMetadata().convertFields(Conversions.toDate(someDateObj, "yyyy-MM-dd'T'HH:mm:ss")).set("someField")
I got a compile error in Intellij and when trying to build with Maven that this method was ambiguous since another method matched. Message in Intellij was:
"Ambiguous method call. Both toDate(Date, String...) in Conversions and toDate(Date, String, String...) in Conversions match."
I assume the other method Intellij and Maven are complaining about is com.univocity.parsers.conversions.Conversions toDate method with signature:
public static DateConversion toDate(Date dateIfNull, String stringIfNull, String... dateFormats)
The text was updated successfully, but these errors were encountered: