From b74ee6c8c5f1dacdd03a7df5bed1431d8a830a91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=A4rki?= Date: Tue, 2 Feb 2016 15:34:27 +0100 Subject: [PATCH] Fix javadoc --- .../ch/psi/daq/queryrest/controller/QueryRestController.java | 2 +- .../ch/psi/daq/queryrest/response/ResponseStreamWriter.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java b/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java index a2df91e..bd5d28d 100644 --- a/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java +++ b/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java @@ -198,7 +198,7 @@ public class QueryRestController { * stringified body of the POST request method * @param res the current {@link HttpServletResponse} instance * @throws Exception if reading the JSON string fails or if the subsequent call to - * {@link #executeQuery(DAQQueries, HttpServletResponse)} fails + * {@link #executeQueries(DAQQueries, HttpServletResponse)} fails */ @RequestMapping( value = QUERIES, diff --git a/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java b/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java index 56c16ac..387a6bc 100644 --- a/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java +++ b/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java @@ -20,7 +20,7 @@ public interface ResponseStreamWriter { * Responding with the the contents of the stream by writing into the output stream of the * {@link ServletResponse}. * - * @param stream The results results + * @param results The results results * @param options The options for the response * @param response {@link ServletResponse} instance given by the current HTTP request * @throws Exception thrown if writing to the output stream fails