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 16BCD18F18 for ; Mon, 10 Aug 2015 15:43:33 +0000 (UTC) Received: (qmail 59052 invoked by uid 500); 10 Aug 2015 15:43:32 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 58969 invoked by uid 500); 10 Aug 2015 15:43:32 -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 58960 invoked by uid 99); 10 Aug 2015 15:43:32 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Aug 2015 15:43:32 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id B5F00AC0095 for ; Mon, 10 Aug 2015 15:43:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1695120 - in /commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile: BootstrapMethod.java BootstrapMethods.java Date: Mon, 10 Aug 2015 15:43:32 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150810154332.B5F00AC0095@hades.apache.org> Author: sebb Date: Mon Aug 10 15:43:32 2015 New Revision: 1695120 URL: http://svn.apache.org/r1695120 Log: TODOs Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethod.java commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethods.java Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethod.java URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethod.java?rev=1695120&r1=1695119&r2=1695120&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethod.java (original) +++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethod.java Mon Aug 10 15:43:32 2015 @@ -37,12 +37,12 @@ public class BootstrapMethod implements private static final long serialVersionUID = -4517534834047695344L; /** Index of the CONSTANT_MethodHandle_info structure in the constant_pool table */ - private int bootstrap_method_ref; + private int bootstrap_method_ref; // TODO this could be made final (setter is not used) - private int num_bootstrap_arguments; + private final int num_bootstrap_arguments; /** Array of references to the constant_pool table */ - private int[] bootstrap_arguments; + private int[] bootstrap_arguments; // TODO this could be made final (setter is not used) /** Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethods.java URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethods.java?rev=1695120&r1=1695119&r2=1695120&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethods.java (original) +++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/classfile/BootstrapMethods.java Mon Aug 10 15:43:32 2015 @@ -33,7 +33,7 @@ public class BootstrapMethods extends At private static final long serialVersionUID = -2169230245012340809L; - private BootstrapMethod[] bootstrap_methods; + private BootstrapMethod[] bootstrap_methods; // TODO this could be made final (setter is not used) /** * Initialize from another object. Note that both objects use the same