Fix whitespace errors.

This commit is contained in:
Michael Jumper
2013-08-23 11:25:09 -07:00
parent 1ac2918f2c
commit f663f754bc
3 changed files with 10 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ import org.xml.sax.helpers.DefaultHandler;
/**
* XML parser for the configuration file used by the NoAuth auth provider.
*
*
* @author Laurent Meunier
*/
public class NoAuthConfigContentHandler extends DefaultHandler {
@@ -70,7 +70,7 @@ public class NoAuthConfigContentHandler extends DefaultHandler {
/**
* Returns the a map of all available configurations as parsed from the
* XML file. This map is unmodifiable.
*
*
* @return A map of all available configurations.
*/
public Map<String, GuacamoleConfiguration> getConfigs() {
@@ -85,13 +85,13 @@ public class NoAuthConfigContentHandler extends DefaultHandler {
// Add to map
configs.put(current, currentConfig);
// Reset state for next configuration
currentConfig = null;
current = null;
}
}
@Override

View File

@@ -116,7 +116,7 @@ public class NoAuthenticationProvider extends SimpleAuthenticationProvider {
/**
* Retrieves the configuration file, as defined within guacamole.properties.
*
*
* @return The configuration file, as defined within guacamole.properties.
* @throws GuacamoleException If an error occurs while reading the
* property.