Remove author

This commit is contained in:
Felipe Adorno 2015-05-03 21:42:20 -03:00
parent aeb6f86bcd
commit 4daaeabaad
5 changed files with 3 additions and 4 deletions

View File

@ -478,6 +478,9 @@
<contributor>
<name>Michał Kordas</name>
</contributor>
<contributor>
<name>Felipe Adorno</name>
</contributor>
</contributors>
<!-- Lang should depend on very little -->

View File

@ -24,7 +24,6 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Use this annotation to builds a equals excluding the annotated field.
* @author Felipe Adorno (felipeadsc@gmail.com)
*/
@Retention(RUNTIME)
@Target(ElementType.FIELD)

View File

@ -24,7 +24,6 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Use this annotation to builds a hash code excluding the annotated field.
* @author Felipe Adorno (felipeadsc@gmail.com)
*/
@Retention(RUNTIME)
@Target(ElementType.FIELD)

View File

@ -24,7 +24,6 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Use this annotation to builds a String excluding the annotated field.
* @author Felipe Adorno (felipeadsc@gmail.com)
*/
@Retention(RUNTIME)
@Target(ElementType.FIELD)

View File

@ -23,7 +23,6 @@ import org.junit.Test;
/**
* Test class for ToStringExclude annotation
* @author Felipe Adorno (felipeadsc@gmail.com)
* @version $Id$
*/
public class ReflectionToStringBuilderExcludeWithAnnotationTest {