-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
8, 11
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
In the documentation signature of StringBuffer class is mentioned as
public final class StringBuilder
extends Object
implements Serializable, CharSequence
But we know StringBuffer class also implements Appendable interface as well.
Even though it is not mentioned in its signature inside documentation
Can you write as
public final class StringBuilder
extends Object
implements Serializable, CharSequence, Appendable
In the documentation signature of StringBuffer class is mentioned as
public final class StringBuilder
extends Object
implements Serializable, CharSequence
But we know StringBuffer class also implements Appendable interface as well.
Even though it is not mentioned in its signature inside documentation
Can you write as
public final class StringBuilder
extends Object
implements Serializable, CharSequence, Appendable
- relates to
-
JDK-8304945 StringBuilder and StringBuffer should implement Appendable explicitly
-
- Resolved
-