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

commit fecdb1f8dadb9541c5839a7bfc4e57b64cf4413d
Author: Gary David Gregory (Code signing key) <ggreg...@apache.org>
AuthorDate: Fri Nov 18 16:34:04 2022 -0500

    Javadoc
---
 src/main/java/org/apache/bcel/generic/ObjectType.java | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/generic/ObjectType.java 
b/src/main/java/org/apache/bcel/generic/ObjectType.java
index b13c16ef..3e71cba2 100644
--- a/src/main/java/org/apache/bcel/generic/ObjectType.java
+++ b/src/main/java/org/apache/bcel/generic/ObjectType.java
@@ -27,6 +27,10 @@ import org.apache.bcel.classfile.Utility;
 public class ObjectType extends ReferenceType {
 
     /**
+     * Constructs a new instance.
+     *
+     * @param className fully qualified class name, e.g. java.lang.String
+     * @return a new instance.
      * @since 6.0
      */
     public static ObjectType getInstance(final String className) {
@@ -36,6 +40,8 @@ public class ObjectType extends ReferenceType {
     private final String className; // Class name of type
 
     /**
+     * Constructs a new instance.
+     *
      * @param className fully qualified class name, e.g. java.lang.String
      */
     public ObjectType(final String className) {
@@ -82,7 +88,6 @@ public class ObjectType extends ReferenceType {
 
     /**
      * If "this" doesn't reference a class, it references an interface or a 
non-existant entity.
-     *
      * @deprecated (since 6.0) this method returns an inaccurate result if the 
class or interface referenced cannot be
      *             found: use referencesClassExact() instead
      */

Reply via email to