Remove unnecessary closing curly brackets in Javadoc

Closes gh-34679

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
This commit is contained in:
Tran Ngoc Nhan
2025-03-29 14:50:15 +07:00
committed by Sam Brannen
parent 75e5a75da5
commit 30fcaef813
10 changed files with 13 additions and 13 deletions

View File

@@ -1473,7 +1473,7 @@ final class SymbolTable {
/**
* Another entry (and so on recursively) having the same hash code (modulo the size of {@link
* SymbolTable#labelEntries}}) as this one.
* SymbolTable#labelEntries}) as this one.
*/
LabelEntry next;

View File

@@ -411,7 +411,7 @@ public abstract class ObjectUtils {
/**
* Return a hash code for the given object; typically the value of
* {@code Object#hashCode()}}. If the object is an array,
* {@code Object#hashCode()}. If the object is an array,
* this method will delegate to any of the {@code Arrays.hashCode}
* methods. If the object is {@code null}, this method returns 0.
* @see Object#hashCode()