commit | 503d9b2b33b87b7c70123bac94b96b1bc23b007a | [log] [tgz] |
---|---|---|
author | David Pursehouse <david.pursehouse@sonymobile.com> | Fri Apr 04 18:34:37 2014 +0900 |
committer | David Pursehouse <david.pursehouse@sonymobile.com> | Fri Apr 04 18:36:44 2014 +0900 |
tree | f978646b67577a55c02e3379473f298445dbdbea | |
parent | 3c666334c9eae370cf483e5e0059c065c8e7212c [diff] |
Correct Javadoc of RestReadView in extension API The resource parameter specifies the resource to be read, not the resource to be modified. Change-Id: I4010674a348cefad02c234118ff25cf332dd76b4
diff --git a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/restapi/RestReadView.java b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/restapi/RestReadView.java index 32c250d..21e9ee0 100644 --- a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/restapi/RestReadView.java +++ b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/restapi/RestReadView.java
@@ -23,7 +23,7 @@ /** * Process the view operation by reading from the resource. * - * @param resource resource to modify. + * @param resource resource to read. * @return result to return to the client. Use {@link BinaryResult} to avoid * automatic conversion to JSON. * @throws AuthException the client is not permitted to access this view.