Return-Path: X-Original-To: apmail-xml-xalan-cvs-archive@www.apache.org Delivered-To: apmail-xml-xalan-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3CC4B767A for ; Thu, 29 Dec 2011 05:09:56 +0000 (UTC) Received: (qmail 41159 invoked by uid 500); 29 Dec 2011 05:09:56 -0000 Delivered-To: apmail-xml-xalan-cvs-archive@xml.apache.org Received: (qmail 41114 invoked by uid 500); 29 Dec 2011 05:09:55 -0000 Mailing-List: contact xalan-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: List-Id: Delivered-To: mailing list xalan-cvs@xml.apache.org Received: (qmail 41107 invoked by uid 99); 29 Dec 2011 05:09:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Dec 2011 05:09:55 +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; Thu, 29 Dec 2011 05:09:53 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C9A6423888D2 for ; Thu, 29 Dec 2011 05:09:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1225436 - in /xalan/java/trunk/src/org/apache/xalan/xsltc: cmdline/getopt/GetOpt.java compiler/util/MethodGenerator.java runtime/Hashtable.java Date: Thu, 29 Dec 2011 05:09:31 -0000 To: xalan-cvs@xml.apache.org From: mrglavas@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111229050931.C9A6423888D2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mrglavas Date: Thu Dec 29 05:09:31 2011 New Revision: 1225436 URL: http://svn.apache.org/viewvc?rev=1225436&view=rev Log: Making several inner classes static. Modified: xalan/java/trunk/src/org/apache/xalan/xsltc/cmdline/getopt/GetOpt.java xalan/java/trunk/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java xalan/java/trunk/src/org/apache/xalan/xsltc/runtime/Hashtable.java Modified: xalan/java/trunk/src/org/apache/xalan/xsltc/cmdline/getopt/GetOpt.java URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xalan/xsltc/cmdline/getopt/GetOpt.java?rev=1225436&r1=1225435&r2=1225436&view=diff ============================================================================== --- xalan/java/trunk/src/org/apache/xalan/xsltc/cmdline/getopt/GetOpt.java (original) +++ xalan/java/trunk/src/org/apache/xalan/xsltc/cmdline/getopt/GetOpt.java Thu Dec 29 05:09:31 2011 @@ -209,7 +209,7 @@ public class GetOpt{ /////////////////////////////////////////////////////////// // inner class to model an option - class Option{ + static class Option{ private char theArgLetter; private String theArgument = null; public Option(char argLetter) { theArgLetter = argLetter; } @@ -225,7 +225,7 @@ public class GetOpt{ // inner class to query optString for a possible option match, // and whether or not a given legal option takes an argument. // - class OptionMatcher{ + static class OptionMatcher{ public OptionMatcher(String optString){ theOptString = optString; } Modified: xalan/java/trunk/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java?rev=1225436&r1=1225435&r2=1225436&view=diff ============================================================================== --- xalan/java/trunk/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java (original) +++ xalan/java/trunk/src/org/apache/xalan/xsltc/compiler/util/MethodGenerator.java Thu Dec 29 05:09:31 2011 @@ -721,7 +721,7 @@ public class MethodGenerator extends Met * current method. See {@link OutlineableChunkStart} and * {@link OutlineableChunkEnd} for more information. */ - private class Chunk implements Comparable { + private static class Chunk implements Comparable { /** * {@link InstructionHandle} of the first instruction in the outlineable * chunk. Modified: xalan/java/trunk/src/org/apache/xalan/xsltc/runtime/Hashtable.java URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xalan/xsltc/runtime/Hashtable.java?rev=1225436&r1=1225435&r2=1225436&view=diff ============================================================================== --- xalan/java/trunk/src/org/apache/xalan/xsltc/runtime/Hashtable.java (original) +++ xalan/java/trunk/src/org/apache/xalan/xsltc/runtime/Hashtable.java Thu Dec 29 05:09:31 2011 @@ -303,7 +303,7 @@ public class Hashtable { * A hashtable enumerator class. This class should remain opaque * to the client. It will use the Enumeration interface. */ - class HashtableEnumerator implements Enumeration { + static class HashtableEnumerator implements Enumeration { boolean keys; int index; HashtableEntry table[]; --------------------------------------------------------------------- To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xalan-cvs-help@xml.apache.org