Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-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 AB13A915D for ; Sat, 29 Oct 2011 07:43:35 +0000 (UTC) Received: (qmail 68793 invoked by uid 500); 29 Oct 2011 07:43:35 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 68731 invoked by uid 500); 29 Oct 2011 07:43:35 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 68723 invoked by uid 99); 29 Oct 2011 07:43:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Oct 2011 07:43:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Oct 2011 07:43:33 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 00C1A2388A32 for ; Sat, 29 Oct 2011 07:43:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1190766 - /commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java Date: Sat, 29 Oct 2011 07:43:12 -0000 To: commits@commons.apache.org From: mcucchiara@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111029074313.00C1A2388A32@eris.apache.org> Author: mcucchiara Date: Sat Oct 29 07:43:12 2011 New Revision: 1190766 URL: http://svn.apache.org/viewvc?rev=1190766&view=rev Log: fixed javadocs warning Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java?rev=1190766&r1=1190765&r2=1190766&view=diff ============================================================================== --- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java (original) +++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/JavaSource.java Sat Oct 29 07:43:12 2011 @@ -30,7 +30,7 @@ public interface JavaSource /** * Expected to return a java source representation of itself such that it could be turned into a literal java - * expression to be compiled and executed for {@link ExpressionAccessor#get(OgnlContext, Object)} calls. + * expression to be compiled and executed for {@link org.apache.commons.ognl.enhance.ExpressionAccessor#get(OgnlContext, Object)} calls. * * @return Literal java string representation of an object get. */ @@ -38,7 +38,7 @@ public interface JavaSource /** * Expected to return a java source representation of itself such that it could be turned into a literal java - * expression to be compiled and executed for {@link ExpressionAccessor#get(OgnlContext, Object)} calls. + * expression to be compiled and executed for {@link org.apache.commons.ognl.enhance.ExpressionAccessor#get(OgnlContext, Object)} calls. * * @return Literal java string representation of an object get. */