* remove logging

This commit is contained in:
Reinhard Pointner 2013-09-04 20:55:57 +00:00
parent 7305b0f939
commit c43c8a0581
1 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,9 @@
package net.sourceforge.filebot.web;
import static java.util.Calendar.*;
import static java.util.Calendar.DAY_OF_MONTH;
import static java.util.Calendar.MONTH;
import static java.util.Calendar.YEAR;
import java.io.Serializable;
import java.text.ParseException;
@ -11,8 +13,6 @@ import java.util.Arrays;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.Locale;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Date implements Serializable {
@ -100,7 +100,7 @@ public class Date implements Serializable {
return new Date(date.get(YEAR), date.get(MONTH) + 1, date.get(DAY_OF_MONTH)); // Calendar months start at 0
} catch (ParseException e) {
// no result if date is invalid
Logger.getLogger(Date.class.getName()).log(Level.WARNING, e.getMessage());
// Logger.getLogger(Date.class.getName()).log(Level.WARNING, e.getMessage());
return null;
}
}