GUACAMOLE-224: Remove @author tags from codebase.

This commit is contained in:
Michael Jumper
2017-02-27 23:17:42 -08:00
parent fa07460390
commit dec73c8457
412 changed files with 18 additions and 832 deletions

View File

@@ -25,8 +25,6 @@ import org.apache.guacamole.GuacamoleServerException;
/**
* A GuacamoleProperty whose value is an boolean. Legal true values are "true",
* or "false". Case does not matter.
*
* @author Michael Jumper
*/
public abstract class BooleanGuacamoleProperty implements GuacamoleProperty<Boolean> {

View File

@@ -24,8 +24,6 @@ import org.apache.guacamole.GuacamoleException;
/**
* A GuacamoleProperty whose value is a filename.
*
* @author Michael Jumper
*/
public abstract class FileGuacamoleProperty implements GuacamoleProperty<File> {

View File

@@ -27,7 +27,6 @@ import org.slf4j.LoggerFactory;
* Abstract representation of the Guacamole configuration directory.
*
* @deprecated
* @author Michael Jumper
*/
public class GuacamoleHome {

View File

@@ -39,7 +39,6 @@ import org.slf4j.LoggerFactory;
* be read from the root of the classpath.
*
* @deprecated
* @author Michael Jumper
*/
public class GuacamoleProperties {

View File

@@ -25,8 +25,8 @@ import org.apache.guacamole.GuacamoleException;
* An abstract representation of a property in the guacamole.properties file,
* which parses into a specific type.
*
* @author Michael Jumper
* @param <Type> The type this GuacamoleProperty will parse into.
* @param <Type>
* The type this GuacamoleProperty will parse into.
*/
public interface GuacamoleProperty<Type> {

View File

@@ -24,8 +24,6 @@ import org.apache.guacamole.GuacamoleServerException;
/**
* A GuacamoleProperty whose value is an integer.
*
* @author Michael Jumper
*/
public abstract class IntegerGuacamoleProperty implements GuacamoleProperty<Integer> {

View File

@@ -24,8 +24,6 @@ import org.apache.guacamole.GuacamoleServerException;
/**
* A GuacamoleProperty whose value is an long.
*
* @author James Muehlner
*/
public abstract class LongGuacamoleProperty implements GuacamoleProperty<Long> {

View File

@@ -23,8 +23,6 @@ import org.apache.guacamole.GuacamoleException;
/**
* A GuacamoleProperty whose value is a simple string.
*
* @author Michael Jumper
*/
public abstract class StringGuacamoleProperty implements GuacamoleProperty<String> {