Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 83579 invoked from network); 30 May 2004 10:32:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 30 May 2004 10:32:13 -0000 Received: (qmail 92141 invoked by uid 500); 30 May 2004 10:32:10 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 91801 invoked by uid 500); 30 May 2004 10:32:08 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 91788 invoked by uid 500); 30 May 2004 10:32:08 -0000 Received: (qmail 91784 invoked by uid 99); 30 May 2004 10:32:08 -0000 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Sun, 30 May 2004 03:32:08 -0700 Received: (qmail 83469 invoked by uid 1289); 30 May 2004 10:32:06 -0000 Date: 30 May 2004 10:32:06 -0000 Message-ID: <20040530103206.83468.qmail@minotaur.apache.org> From: rdonkin@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/logging/src/java/org/apache/commons/logging/impl SimpleLog.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N rdonkin 2004/05/30 03:32:06 Modified: logging/src/java/org/apache/commons/logging/impl SimpleLog.java Log: Removed unneccessary check introduced by myself. Revision Changes Path 1.20 +1 -5 jakarta-commons/logging/src/java/org/apache/commons/logging/impl/SimpleLog.java Index: SimpleLog.java =================================================================== RCS file: /home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/impl/SimpleLog.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- SimpleLog.java 29 May 2004 10:43:35 -0000 1.19 +++ SimpleLog.java 30 May 2004 10:32:06 -0000 1.20 @@ -168,10 +168,6 @@ if(showDateTime) { dateTimeFormat = getStringProperty(systemPrefix + "dateTimeFormat", dateTimeFormat); - if (dateTimeFormat == null || "".equals(dateTimeFormat)) { - // if this property has not been set then use the default - dateTimeFormat = DEFAULT_DATE_TIME_FORMAT; - } try { dateFormatter = new SimpleDateFormat(dateTimeFormat); } catch(IllegalArgumentException e) { --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org