Skip to content

Commit

Permalink
Close HTML tags
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Mar 30, 2024
1 parent 8a8c87c commit 5e8368d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,10 @@ public int getSampleSize() {
return 6;
}

public int getSampleValuesPerKey() {
return 2;
}

/**
* Returns the set of values in the mappings used to test the map. This
* method must return an array with the same length as
Expand All @@ -559,6 +563,7 @@ public V[] getSampleValues() {
* <p>
* Default implementation returns true. Override if your collection class
* does not support put adding.
* </p>
*/
public boolean isAddSupported() {
return true;
Expand All @@ -570,6 +575,7 @@ public boolean isAddSupported() {
* <p>
* Default implementation returns true. Override if your collection class
* does not support null keys.
* </p>
*/
public boolean isAllowNullKey() {
return true;
Expand All @@ -581,6 +587,7 @@ public boolean isAllowNullKey() {
* <p>
* Default implementation returns false. Override if your collection class
* supports set value.
* </p>
*/
public boolean isHashSetValue() {
return false;
Expand All @@ -593,6 +600,7 @@ public boolean isHashSetValue() {
* <p>
* Default implementation returns true. Override if your collection class
* does not support removal operations.
* </p>
*/
public boolean isRemoveSupported() {
return true;
Expand Down

0 comments on commit 5e8368d

Please sign in to comment.