From 38b3a19ace247177bfb8971f8a65f668415de7aa Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 25 Oct 2021 03:05:17 -0700 Subject: [PATCH] GUACAMOLE-956: Clarify relation of ContainerRequest to the HTTP request that resulted in an exception. --- .../org/apache/guacamole/rest/RESTExceptionMapper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guacamole/src/main/java/org/apache/guacamole/rest/RESTExceptionMapper.java b/guacamole/src/main/java/org/apache/guacamole/rest/RESTExceptionMapper.java index 2aae289f8..ecb99a473 100644 --- a/guacamole/src/main/java/org/apache/guacamole/rest/RESTExceptionMapper.java +++ b/guacamole/src/main/java/org/apache/guacamole/rest/RESTExceptionMapper.java @@ -50,10 +50,10 @@ public class RESTExceptionMapper implements ExceptionMapper { private final Logger logger = LoggerFactory.getLogger(RESTExceptionMapper.class); /** - * The ContainerRequest for HTTP request that resulted in the Throwable - * being intercepted. Despite this class being a Singleton, this object will - * always be scoped with the current request for the Throwable that is being - * processed by this class. + * The ContainerRequest representing the HTTP request that resulted in the + * Throwable being intercepted. Despite this class being a Singleton, this + * object will always be scoped with the current request for the Throwable + * that is being processed by this class. */ @Context private ContainerRequest request;