From c8dbb4be4de701c10587976864e1d4e843f595c9 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 9 Apr 2016 12:11:04 -0700 Subject: Fixing javadoc. --- src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java') diff --git a/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java b/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java index d54c8a9..fa3d017 100644 --- a/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java +++ b/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java @@ -18,7 +18,7 @@ public abstract class CCBAPIResponse { /** * Return the error message if present. * - * @return A CCBErrorResponse if an error occurred. Null if the request was successful. + * @return A {@link CCBErrorResponse} if an error occurred. Null if the request was successful. */ public List getErrors() { return errorResponses; @@ -27,7 +27,7 @@ public abstract class CCBAPIResponse { /** * Set the error response. * - * @param error The CCBErrorResponse to set. + * @param errors The list of {@link CCBErrorResponse}s to set. */ public void setErrors(final List errors) { this.errorResponses = errors; -- cgit v1.2.3