Skip to content

Commit

Permalink
Remove unnecessary @author clause
Browse files Browse the repository at this point in the history
  • Loading branch information
elefevre committed Jan 21, 2012
1 parent cdc8f01 commit e421239
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 14 deletions.
3 changes: 0 additions & 3 deletions src/main/java/teh/annotations/TEH.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
* these 2 rules:<br>
* - any attribute used for hashCode will be used for equals and toString<br>
* - any attribute used for equals will be used for toString
*
* @author francois wauquier
*
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/teh/annotations/ToString.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
* Mark a field as used for toString
*
* @see Object#toString()
* @author francois wauquier
*
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/teh/annotations/ToStringEquals.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
*
* @see Object#toString()
* @see Object#equals(Object)
* @author francois wauquier
*
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/teh/annotations/ToStringEqualsHashCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
* @see Object#toString()
* @see Object#equals(Object)
* @see Object#hashCode()
* @author francois wauquier
*
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/teh/utils/TEHObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
import teh.annotations.TEH;

/**
* Super class to use in order to use THE If you don't want or cannot inherit
* Super class to use in order to use TEH. If you don't want or cannot inherit
* this class, just override the 3 methods by using TEHUtils, as in this class.<br>
*
* @TEH is not necessary when you extends TEHObject
* @author francois wauquier
*/
@TEH
public class TEHObject {
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/teh/utils/TEHUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@

/**
* TEH Utils
*
* @author francois wauquier
*
*/
public class TEHUtils {

Expand Down

0 comments on commit e421239

Please sign in to comment.