Return-Path: X-Original-To: apmail-struts-commits-archive@minotaur.apache.org Delivered-To: apmail-struts-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DC2BE1847E for ; Fri, 12 Jun 2015 08:53:36 +0000 (UTC) Received: (qmail 30848 invoked by uid 500); 12 Jun 2015 08:53:33 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 30743 invoked by uid 500); 12 Jun 2015 08:53:33 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 30642 invoked by uid 99); 12 Jun 2015 08:53:33 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Jun 2015 08:53:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A5C4DE17FC; Fri, 12 Jun 2015 08:53:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cnenning@apache.org To: commits@struts.apache.org Date: Fri, 12 Jun 2015 08:53:37 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [07/10] struts git commit: using java.util.Date instead of java.sql.Date using java.util.Date instead of java.sql.Date Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/f3a0dcaf Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/f3a0dcaf Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/f3a0dcaf Branch: refs/heads/master Commit: f3a0dcaf24a784699cc6859758b23283e21b35c4 Parents: 372ce96 Author: cnenning Authored: Fri Jun 12 10:39:04 2015 +0200 Committer: cnenning Committed: Fri Jun 12 10:39:04 2015 +0200 ---------------------------------------------------------------------- .../struts2/showcase/validation/BeanValidationExampleAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/f3a0dcaf/apps/showcase/src/main/java/org/apache/struts2/showcase/validation/BeanValidationExampleAction.java ---------------------------------------------------------------------- diff --git a/apps/showcase/src/main/java/org/apache/struts2/showcase/validation/BeanValidationExampleAction.java b/apps/showcase/src/main/java/org/apache/struts2/showcase/validation/BeanValidationExampleAction.java index b9f2b35..67190e0 100644 --- a/apps/showcase/src/main/java/org/apache/struts2/showcase/validation/BeanValidationExampleAction.java +++ b/apps/showcase/src/main/java/org/apache/struts2/showcase/validation/BeanValidationExampleAction.java @@ -33,7 +33,7 @@ import org.hibernate.validator.constraints.ScriptAssert; import org.hibernate.validator.constraints.URL; import javax.validation.constraints.*; -import java.sql.Date; +import java.util.Date; /** *