Sfoglia il codice sorgente

Remove author comments.

Change-Id: Id4a3b8406f433f9054580c351a1fc35f9bcceb6d
Reviewed-on: http://gerrit.dmdirc.com/3787
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
changes/87/3787/2
Chris Smith 9 anni fa
parent
commit
5ed0fccb52

+ 0
- 1
src/com/dmdirc/util/validators/ColourValidator.java Vedi File

26
  * Validates that the value is a valid IRC colour (hex or mIRC).
26
  * Validates that the value is a valid IRC colour (hex or mIRC).
27
  *
27
  *
28
  * @since 0.6.5
28
  * @since 0.6.5
29
- * @author chris
30
  */
29
  */
31
 public class ColourValidator extends RegexStringValidator implements
30
 public class ColourValidator extends RegexStringValidator implements
32
         Validator<String> {
31
         Validator<String> {

+ 0
- 1
src/com/dmdirc/util/validators/DisabledOptionValidator.java Vedi File

27
  * with "false:".
27
  * with "false:".
28
  *
28
  *
29
  * @since 0.6.5
29
  * @since 0.6.5
30
- * @author chris
31
  */
30
  */
32
 public class DisabledOptionValidator implements Validator<String> {
31
 public class DisabledOptionValidator implements Validator<String> {
33
 
32
 

+ 0
- 2
src/com/dmdirc/util/validators/NumericalValidator.java Vedi File

24
 
24
 
25
 /**
25
 /**
26
  * Validates that a number is within certain bounds.
26
  * Validates that a number is within certain bounds.
27
- *
28
- * @author chris
29
  */
27
  */
30
 public class NumericalValidator implements Validator<String> {
28
 public class NumericalValidator implements Validator<String> {
31
 
29
 

+ 0
- 1
src/com/dmdirc/util/validators/PermissiveValidator.java Vedi File

25
  * A validator that permits everything.
25
  * A validator that permits everything.
26
  *
26
  *
27
  * @param <V> The type of data that this validator validates
27
  * @param <V> The type of data that this validator validates
28
- * @author chris
29
  */
28
  */
30
 public class PermissiveValidator<V> implements Validator<V> {
29
 public class PermissiveValidator<V> implements Validator<V> {
31
 
30
 

+ 0
- 2
src/com/dmdirc/util/validators/RegexValidator.java Vedi File

24
 
24
 
25
 /**
25
 /**
26
  * Validates a regular expression.
26
  * Validates a regular expression.
27
- *
28
- * @author chris
29
  */
27
  */
30
 public class RegexValidator implements Validator<String> {
28
 public class RegexValidator implements Validator<String> {
31
 
29
 

+ 0
- 2
src/com/dmdirc/util/validators/StringLengthValidator.java Vedi File

23
 
23
 
24
 /**
24
 /**
25
  * Validates that the length of a string is within certain bounds.
25
  * Validates that the length of a string is within certain bounds.
26
- *
27
- * @author chris
28
  */
26
  */
29
 public class StringLengthValidator implements Validator<String> {
27
 public class StringLengthValidator implements Validator<String> {
30
 
28
 

+ 0
- 2
src/com/dmdirc/util/validators/ValidationResponse.java Vedi File

24
 /**
24
 /**
25
  * Describes the response from a Validator. The response may be either positive
25
  * Describes the response from a Validator. The response may be either positive
26
  * or negative. Negative responses have an associated failure reason.
26
  * or negative. Negative responses have an associated failure reason.
27
- *
28
- * @author chris
29
  */
27
  */
30
 public class ValidationResponse {
28
 public class ValidationResponse {
31
 
29
 

Loading…
Annulla
Salva