From 4b3969699c2cad2c4c9bba9e4ae2890d27c9f350 Mon Sep 17 00:00:00 2001 From: James Muehlner Date: Wed, 22 Jul 2015 21:48:22 -0700 Subject: [PATCH] GUAC-1260 Fixed comments. --- .../guacamole/net/basic/extension/Extension.java | 8 ++++---- .../guacamole/net/basic/extension/ExtensionManifest.java | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/Extension.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/Extension.java index e11ed91a8..cd5e9513e 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/Extension.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/Extension.java @@ -110,13 +110,13 @@ public class Extension { /** * The resource for the small favicon for the extension. If provided, this - * will replace the default guacamole icon. + * will replace the default Guacamole icon. */ private final Resource smallIcon; /** * The resource foe the large favicon for the extension. If provided, this - * will replace the default guacamole icon. + * will replace the default Guacamole icon. */ private final Resource largeIcon; @@ -472,7 +472,7 @@ public class Extension { /** * Returns the resource for the small favicon for the extension. If - * provided, this will replace the default guacamole icon. + * provided, this will replace the default Guacamole icon. * * @return * The resource for the large favicon. @@ -483,7 +483,7 @@ public class Extension { /** * Returns the resource for the large favicon for the extension. If - * provided, this will replace the default guacamole icon. + * provided, this will replace the default Guacamole icon. * * @return * The resource for the large favicon. diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/ExtensionManifest.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/ExtensionManifest.java index 365702272..e895d0299 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/ExtensionManifest.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/ExtensionManifest.java @@ -328,7 +328,8 @@ public class ExtensionManifest { * Returns the path to the small favicon, relative to the root of the * extension. * - * @return The path to the small favicon. + * @return + * The path to the small favicon. */ public String getSmallIcon() { return smallIcon; @@ -338,7 +339,8 @@ public class ExtensionManifest { * Sets the path to the small favicon. This will replace the default * guacamole icon. * - * @param smallIcon The path to the small favicon. + * @param smallIcon + * The path to the small favicon. */ public void setSmallIcon(String smallIcon) { this.smallIcon = smallIcon;