GUACAMOLE-47: Correct language of remoteHost/remoteAddr comments; Fix style issues on comment lines.

This commit is contained in:
Nick Couchman
2017-01-28 13:42:51 -05:00
parent 20a61fc845
commit 013e10d61e

View File

@@ -42,12 +42,12 @@ public class APIRequest extends HttpServletRequestWrapper {
private final Map<String, String[]> parameters; private final Map<String, String[]> parameters;
/** /**
* The remote hostname that initiated the request. * The hostname of the client that initiated the request.
*/ */
private final String remoteHost; private final String remoteHost;
/** /**
* The remote ip address that initiated the request. * The ip address of the client that initiated the request.
*/ */
private final String remoteAddr; private final String remoteAddr;
@@ -68,10 +68,10 @@ public class APIRequest extends HttpServletRequestWrapper {
super(request); super(request);
// Grab the remote host info. // Grab the remote host info
this.remoteHost = request.getRemoteHost(); this.remoteHost = request.getRemoteHost();
// Grab the remote ip info. // Grab the remote ip info
this.remoteAddr = request.getRemoteAddr(); this.remoteAddr = request.getRemoteAddr();
// Copy parameters from given MultivaluedMap // Copy parameters from given MultivaluedMap