CE-1955 Add "H" to pattern check for date-time/hours (doesn't appear in docs i can find, but does appear in a file i'm working with, so... probably valid)

This commit is contained in:
2025-01-07 11:34:39 -06:00
parent 5ad4216434
commit 387804acff

View File

@ -202,7 +202,7 @@ public class XlsxFileToRows extends AbstractIteratorBasedFileToRows<org.dhatim.f
***************************************************************************/ ***************************************************************************/
static boolean hasHour(String dataFormatString) static boolean hasHour(String dataFormatString)
{ {
return dataFormatString.contains("h"); return dataFormatString.contains("h") || dataFormatString.contains("H");
} }