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 70a6740 Format and Javadoc tweaks. 70a6740 is described below commit 70a6740664a523d9fdbbb5485653d4df3a369205 Author: Gary Gregory <ggreg...@rocketsoftware.com> AuthorDate: Tue May 28 08:41:42 2019 -0400 Format and Javadoc tweaks. --- src/main/java/org/apache/bcel/classfile/Constant.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main/java/org/apache/bcel/classfile/Constant.java b/src/main/java/org/apache/bcel/classfile/Constant.java index aaf7a32..08f7408 100644 --- a/src/main/java/org/apache/bcel/classfile/Constant.java +++ b/src/main/java/org/apache/bcel/classfile/Constant.java @@ -64,12 +64,10 @@ public abstract class Constant implements Cloneable, Node { @java.lang.Deprecated protected byte tag; // TODO should be private & final - Constant(final byte tag) { this.tag = tag; } - /** * Called by objects that are traversing the nodes of the tree implicitely * defined by the contents of a Java class. I.e., the hierarchy of methods, @@ -80,10 +78,8 @@ public abstract class Constant implements Cloneable, Node { @Override public abstract void accept( Visitor v ); - public abstract void dump( DataOutputStream file ) throws IOException; - /** * @return Tag of constant, i.e., its type. No setTag() method to avoid * confusion. @@ -92,7 +88,6 @@ public abstract class Constant implements Cloneable, Node { return tag; } - /** * @return String representation. */ @@ -101,7 +96,6 @@ public abstract class Constant implements Cloneable, Node { return Const.getConstantName(tag) + "[" + tag + "]"; } - /** * @return deep copy of this constant */ @@ -114,7 +108,6 @@ public abstract class Constant implements Cloneable, Node { return null; } - @Override public Object clone() { try { @@ -182,7 +175,6 @@ public abstract class Constant implements Cloneable, Node { return bcelComparator; } - /** * @param comparator Comparison strategy object */ @@ -190,7 +182,6 @@ public abstract class Constant implements Cloneable, Node { bcelComparator = comparator; } - /** * Returns value as defined by given BCELComparator strategy. * By default two Constant objects are said to be equal when @@ -203,7 +194,6 @@ public abstract class Constant implements Cloneable, Node { return bcelComparator.equals(this, obj); } - /** * Returns value as defined by given BCELComparator strategy. * By default return the hashcode of the result of toString().