Skip to content

Commit

Permalink
* Removed all of my author doc tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
SethFalco committed Aug 14, 2020
1 parent 056c784 commit ee4f00b
Show file tree
Hide file tree
Showing 30 changed files with 0 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
* clients, applications, and servers.
* </p>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class CharacterConverter implements ConfigResolver.Converter<Character>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
* prefix your value with <code>0x</code> instead of {@link #HEX_COLOR_PREFIX}.
* </p>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class ColorConverter implements ConfigResolver.Converter<Color>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
*
* <p>The dimensions must not be negative, and must be {@link Integer} values.</p>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class DimensionConverter implements ConfigResolver.Converter<Dimension>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
* <code>5000</code> (5000 {@link ChronoUnit#MILLIS}).</li>
* </ul>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class DurationConverter implements ConfigResolver.Converter<Duration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
* </li>
* </ul>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class EnumConverter implements ConfigResolver.Converter<Enum>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.Objects;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class FileConverter implements ConfigResolver.Converter<File>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
/**
* For converting configuration property values to an IP address.
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
* @see <a href="https://en.wikipedia.org/wiki/Inet_address">IP Address on Wikipedia</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* format. If this isn't possible we'll read the value as a literal {@link Long} so
* it can be interpretted as unix time.
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
* @see <a href="https://en.wikipedia.org/wiki/Unix_time">Unix Time on Wikipedia</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
/**
* Converts a localization pattern into a Java {@link Locale} object.
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class LocaleConverter implements ConfigResolver.Converter<Locale>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
/**
* Converts a regular expression into a Java {@link Pattern} object.
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class PatternConverter implements ConfigResolver.Converter<Pattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
* </li>
* </ul>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class PeriodConverter implements ConfigResolver.Converter<Period>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.util.regex.Pattern;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class PointConverter implements ConfigResolver.Converter<Point>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
/**
* <p>Converts a {@link String} to a Java {@link URI} instance.</p>
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class UriConverter implements ConfigResolver.Converter<URI>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
* This also can be extended to support filtering of URL components
* such as {@link URL#getProtocol()} for more specialized use or validation.
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class UrlConverter implements ConfigResolver.Converter<URL>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
/**
* Convert a configuration property value to a {@link UUID}.
*
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class UuidConverter implements ConfigResolver.Converter<UUID>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.junit.Test;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class CharacterConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.awt.*;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class ColorConverterTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.awt.*;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class DimensionConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.time.temporal.ChronoUnit;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class DurationConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.util.concurrent.TimeUnit;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class EnumConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.io.File;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class FileConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.net.UnknownHostException;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class InetAddressConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.time.Instant;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class InstantConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.util.Locale;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class LocaleConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.junit.Test;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class PatternConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.time.Period;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class PeriodConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.awt.Point;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class PointConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@


/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class UriConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import java.util.List;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class UrlConverterTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import java.util.UUID;

/**
* @author [email protected] (Seth Falco)
* @since 1.9.5
*/
public class UuidConverterTest
Expand Down

0 comments on commit ee4f00b

Please sign in to comment.