-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed all of my author doc tags.
- Loading branch information
Showing
30 changed files
with
0 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,6 @@ | |
* </li> | ||
* </ul> | ||
* | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class EnumConverter implements ConfigResolver.Converter<Enum> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
import java.util.Objects; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class FileConverter implements ConfigResolver.Converter<File> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ | |
* </li> | ||
* </ul> | ||
* | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class PeriodConverter implements ConfigResolver.Converter<Period> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
import org.junit.Test; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class CharacterConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.awt.*; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class ColorConverterTest { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.awt.*; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class DimensionConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.time.temporal.ChronoUnit; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class DurationConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.util.concurrent.TimeUnit; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class EnumConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.io.File; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class FileConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
import java.net.UnknownHostException; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class InetAddressConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.time.Instant; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class InstantConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.util.Locale; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class LocaleConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
import org.junit.Test; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class PatternConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.time.Period; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class PeriodConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
import java.awt.Point; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class PointConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ | |
|
||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class UriConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ | |
import java.util.List; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class UrlConverterTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
import java.util.UUID; | ||
|
||
/** | ||
* @author [email protected] (Seth Falco) | ||
* @since 1.9.5 | ||
*/ | ||
public class UuidConverterTest | ||
|