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/17 16:02:50 UTC

[commons-bcel] branch master updated: Less cryptic parameter 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 5d7f6bef Less cryptic parameter names
5d7f6bef is described below

commit 5d7f6bef03c4bc3c57f0490561f20015361dab19
Author: Gary David Gregory (Code signing key) <gg...@apache.org>
AuthorDate: Thu Nov 17 11:02:45 2022 -0500

    Less cryptic parameter names
---
 src/main/java/org/apache/bcel/generic/Type.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/bcel/generic/Type.java b/src/main/java/org/apache/bcel/generic/Type.java
index a6b91c6c..551a1bb8 100644
--- a/src/main/java/org/apache/bcel/generic/Type.java
+++ b/src/main/java/org/apache/bcel/generic/Type.java
@@ -307,9 +307,9 @@ public abstract class Type {
     @Deprecated
     protected String signature; // signature for the type TODO should be private
 
-    protected Type(final byte t, final String s) {
-        type = t;
-        signature = s;
+    protected Type(final byte type, final String signature) {
+        this.type = type;
+        this.signature = signature;
     }
 
     /**