Fix javadoc warnings and errors

In preparation of release fix javadoc warnings and errors

Signed-off-by: Doug Morato <dm@corp.io>
This commit is contained in:
Doug Morato
2016-11-18 16:33:02 -05:00
parent 114f220c15
commit d3e4792b37
4 changed files with 4 additions and 7 deletions

View File

@ -78,9 +78,9 @@ public class LabelDebugService extends BaseService {
/**
* Sets the enabled flag on the label debugger to the given parameter
*
* @param enabled {@link org.owasp.webgoat.session.LabelDebugger} object
* @throws Exception unhandled exception
* @return a {@link org.springframework.http.ResponseEntity} object.
* @throws Exception
*/
@RequestMapping(value = URL_DEBUG_LABELS_MVC, produces = MediaType.APPLICATION_JSON_VALUE, params = KEY_ENABLED)
public @ResponseBody
@ -92,7 +92,7 @@ public class LabelDebugService extends BaseService {
}
/**
* @param enabled
* @param enabled {@link org.owasp.webgoat.session.LabelDebugger} object
* @return a {@link java.util.Map} object.
*/
private Map<String, Object> createResponse(Boolean enabled) {

View File

@ -47,7 +47,6 @@ public class RestartLessonService extends BaseService {
* Returns current lesson
*
* @param session a {@link javax.servlet.http.HttpSession} object.
* @return a {@link java.lang.String} object.
*/
@RequestMapping(value = "/restartlesson.mvc")
@ResponseStatus(value = HttpStatus.OK)