Skip to content

Commit

Permalink
Javadoc correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
dweiss committed May 22, 2024
1 parent fa7fb32 commit 6f1c9be
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,16 @@ public interface KTypeVTypeAssociativeContainer<KType, VType>
/**
* Applies a given procedure to all keys-value pairs in this container.
* Returns the argument (any subclass of {@link KTypeVTypeProcedure}. This
* lets the caller to call methods of the argument by chaining the call (even
* if the argument is an anonymous type) to retrieve computed values, for
* example.
* lets the caller call methods of the argument by chaining the call (even
* if the argument is an anonymous type) to retrieve computed values.
*/
public <T extends KTypeVTypeProcedure<? super KType, ? super VType>> T forEach(T procedure);

/**
* Applies a given predicate to all keys-value pairs in this container.
* Returns the argument (any subclass of {@link KTypeVTypePredicate}. This
* lets the caller to call methods of the argument by chaining the call (even
* if the argument is an anonymous type) to retrieve computed values, for
* example.
* lets the caller call methods of the argument by chaining the call (even
* if the argument is an anonymous type) to retrieve computed values.
*
* The iteration is continued as long as the predicate returns
* <code>true</code>.
Expand Down

0 comments on commit 6f1c9be

Please sign in to comment.