You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/11/19 13:48:01 UTC

[commons-bcel] branch master updated: Better local names

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git


The following commit(s) were added to refs/heads/master by this push:
     new 6fa46840 Better local names
6fa46840 is described below

commit 6fa46840a3a4b9ee9795fda966fe6c3f5c4e2dde
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 19 08:47:57 2022 -0500

    Better local names
---
 src/main/java/org/apache/bcel/classfile/StackMapType.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/bcel/classfile/StackMapType.java b/src/main/java/org/apache/bcel/classfile/StackMapType.java
index 9b5c1178..5f76689c 100644
--- a/src/main/java/org/apache/bcel/classfile/StackMapType.java
+++ b/src/main/java/org/apache/bcel/classfile/StackMapType.java
@@ -137,12 +137,12 @@ public final class StackMapType implements Cloneable {
         this.constantPool = constantPool;
     }
 
-    public void setIndex(final int t) {
-        index = t;
+    public void setIndex(final int index) {
+        this.index = index;
     }
 
-    public void setType(final byte t) {
-        type = checkType(t);
+    public void setType(final byte type) {
+        this.type = checkType(type);
     }
 
     /**