[docs] Fix warnings about undocumented default constructors (#6151)

This commit is contained in:
Tyler Veness
2024-01-04 13:57:21 -08:00
committed by GitHub
parent 0f060afb55
commit 4210f5635d
17 changed files with 55 additions and 3 deletions

View File

@@ -54,6 +54,9 @@ public class LongToObjectHashMap<V> {
@SuppressWarnings("unchecked")
private V[] m_values = (V[]) new Object[m_capacity];
/** Default constructor. */
public LongToObjectHashMap() {}
/**
* Puts a value {@code value} corresponding to key {@code key} in the map.
*