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 2024/01/04 13:45:39 UTC

(commons-bcel) branch master updated: Javadoc

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 fbc58b1d Javadoc
fbc58b1d is described below

commit fbc58b1d4693048c50849be2027a9b526ab4c462
Author: Gary David Gregory (Code signing key) <gg...@apache.org>
AuthorDate: Thu Jan 4 08:45:34 2024 -0500

    Javadoc
---
 src/main/java/org/apache/bcel/classfile/Node.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/classfile/Node.java b/src/main/java/org/apache/bcel/classfile/Node.java
index 1fecc0cf..51a9bfbe 100644
--- a/src/main/java/org/apache/bcel/classfile/Node.java
+++ b/src/main/java/org/apache/bcel/classfile/Node.java
@@ -21,5 +21,5 @@ package org.apache.bcel.classfile;
  */
 public interface Node {
 
-    void accept(Visitor obj);
+    void accept(Visitor visitor);
 }