Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 20568 invoked from network); 9 Mar 2008 04:00:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Mar 2008 04:00:16 -0000 Received: (qmail 19109 invoked by uid 500); 9 Mar 2008 04:00:13 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 18869 invoked by uid 500); 9 Mar 2008 04:00:13 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 18858 invoked by uid 500); 9 Mar 2008 04:00:13 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 18855 invoked by uid 99); 9 Mar 2008 04:00:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Mar 2008 20:00:12 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Mar 2008 03:59:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C81271A9832; Sat, 8 Mar 2008 19:59:54 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r635155 - /webservices/axis2/trunk/java/modules/corba/src/org/apache/axis2/corba/idl/types/Member.java Date: Sun, 09 Mar 2008 03:59:54 -0000 To: axis2-cvs@ws.apache.org From: dims@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080309035954.C81271A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dims Date: Sat Mar 8 19:59:53 2008 New Revision: 635155 URL: http://svn.apache.org/viewvc?rev=635155&view=rev Log: Fix for AXIS2-3385 - i ran findbugs over the cobra's source code and its suggest that i make these fields final Modified: webservices/axis2/trunk/java/modules/corba/src/org/apache/axis2/corba/idl/types/Member.java Modified: webservices/axis2/trunk/java/modules/corba/src/org/apache/axis2/corba/idl/types/Member.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/corba/src/org/apache/axis2/corba/idl/types/Member.java?rev=635155&r1=635154&r2=635155&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/corba/src/org/apache/axis2/corba/idl/types/Member.java (original) +++ webservices/axis2/trunk/java/modules/corba/src/org/apache/axis2/corba/idl/types/Member.java Sat Mar 8 19:59:53 2008 @@ -25,9 +25,9 @@ protected String mode; protected String modifier; - public static String MODE_IN = "in"; - public static String MODE_INOUT = "inout"; - public static String MODE_OUT = "out"; + public static final String MODE_IN = "in"; + public static final String MODE_INOUT = "inout"; + public static final String MODE_OUT = "out"; public DataType getDataType() { return dataType; --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org