This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new efab6cb03 Javadoc efab6cb03 is described below commit efab6cb03ed473af6e1fa9b9f06aa49f7ca399e3 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun May 4 08:54:01 2025 -0400 Javadoc --- .../java/org/apache/commons/lang3/exception/ExceptionContext.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionContext.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionContext.java index 6c45612fa..044d18c99 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionContext.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionContext.java @@ -49,21 +49,21 @@ public interface ExceptionContext { ExceptionContext addContextValue(String label, Object value); /** - * Retrieves the full list of label-value pairs defined in the contextual data. + * Gets the full list of label-value pairs defined in the contextual data. * * @return the list of pairs, not {@code null} */ List<Pair<String, Object>> getContextEntries(); /** - * Retrieves the full set of labels defined in the contextual data. + * Gets the full set of labels defined in the contextual data. * * @return the set of labels, not {@code null} */ Set<String> getContextLabels(); /** - * Retrieves all the contextual data values associated with the label. + * Gets all the contextual data values associated with the label. * * @param label the label to get the contextual values for, may be {@code null} * @return the contextual values associated with the label, never {@code null} @@ -71,7 +71,7 @@ public interface ExceptionContext { List<Object> getContextValues(String label); /** - * Retrieves the first available contextual data value associated with the label. + * Gets the first available contextual data value associated with the label. * * @param label the label to get the contextual value for, may be {@code null} * @return the first contextual value associated with the label, may be {@code null}