Search found 1 match

by jfreebob
Thu May 07, 2009 10:01 am
Forum: JCommon
Topic: Bug
Replies: 1
Views: 96700

Bug

I think I've found a pretty major bug in the 'private int calcSerial(final int d, final int m, final int y)' function of the SpreadsheetDate class in the jcommon library. if (m > MonthConstants.FEBRUARY) { should be replaced with either: if (m >= MonthConstants.FEBRUARY) { or if (m > 1) { Maybe some...