You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2017/03/21 17:47:33 UTC

[09/10] incubator-guacamole-client git commit: GUACAMOLE-244: Minor style tweaks in comments.

GUACAMOLE-244: Minor style tweaks in comments.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/f1466906
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/f1466906
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/f1466906

Branch: refs/heads/master
Commit: f1466906e3ee5c4326ff07deba43003fbd688a2a
Parents: f2b4053
Author: Nick Couchman <ni...@yahoo.com>
Authored: Tue Mar 21 07:33:21 2017 -0400
Committer: Nick Couchman <ni...@yahoo.com>
Committed: Tue Mar 21 07:33:21 2017 -0400

----------------------------------------------------------------------
 .../org/apache/guacamole/auth/ldap/ConfigurationService.java   | 5 ++---
 .../org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java | 6 +++---
 .../apache/guacamole/auth/ldap/DereferenceAliasesProperty.java | 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/f1466906/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java
index 3d9ea64..f0988a7 100644
--- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java
+++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ConfigurationService.java
@@ -233,8 +233,8 @@ public class ConfigurationService {
 
     /**
      * Returns whether or not LDAP aliases will be dereferenced,
-     * as configured with guacamole.properties.  The default
-     * behavior if not explicitly defined is to never 
+     * as configured with guacamole.properties. The default
+     * behavior if not explicitly defined is to never
      * dereference them.
      *
      * @return
@@ -249,7 +249,6 @@ public class ConfigurationService {
             LDAPGuacamoleProperties.LDAP_DEREFERENCE_ALIASES,
             DereferenceAliasesMode.NEVER
         );
-
     }
 
     /**

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/f1466906/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java
index 406c247..1fd1bea 100644
--- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java
+++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesMode.java
@@ -28,20 +28,20 @@ import com.novell.ldap.LDAPSearchConstraints;
 public enum DereferenceAliasesMode {
 
     /**
-     * Never dereference aliases.  This is the default.
+     * Never dereference aliases. This is the default.
      */
     NEVER(LDAPSearchConstraints.DEREF_NEVER),
 
     /**
      * Aliases are dereferenced below the base object, but not to locate
-     * the base object itself.  So, if the base object is itself an alias
+     * the base object itself. So, if the base object is itself an alias
      * the search will not complete.
      */
     SEARCHING(LDAPSearchConstraints.DEREF_SEARCHING),
 
     /**
      * Aliases are only dereferenced to locate the base object, but not
-     * after that.  So, a search against a base object that is an alias will
+     * after that. So, a search against a base object that is an alias will
      * find any subordinates of the real object the alias references, but
      * further aliases in the search will not be dereferenced.
      */

http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/f1466906/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java
index 7888347..60b89c4 100644
--- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java
+++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/DereferenceAliasesProperty.java
@@ -26,7 +26,7 @@ import org.apache.guacamole.properties.GuacamoleProperty;
 /**
  * A GuacamoleProperty with a value of DereferenceAliases. The possible strings
  * "never", "searching", "finding", and "always" are mapped to their values as a
- * DereferenceAliases enum.  Anything else results in a parse error.
+ * DereferenceAliases enum. Anything else results in a parse error.
  */
 public abstract class DereferenceAliasesProperty implements GuacamoleProperty<DereferenceAliasesMode> {