Dropped @author notes, moved individuals to the pom.xml contributor list
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1159028 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e57642b79
commit
f4ebe14c5f
12
pom.xml
12
pom.xml
|
@ -230,6 +230,9 @@
|
|||
<contributor>
|
||||
<name>Norm Deane</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Morgan Delagrange</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ringo De Smet</name>
|
||||
</contributor>
|
||||
|
@ -266,6 +269,9 @@
|
|||
<contributor>
|
||||
<name>Chris Hyzer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paul Jack</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Marc Johnson</name>
|
||||
</contributor>
|
||||
|
@ -290,6 +296,9 @@
|
|||
<contributor>
|
||||
<name>Rafal Krzewski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Leppik</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Eli Lindsey</name>
|
||||
</contributor>
|
||||
|
@ -374,6 +383,9 @@
|
|||
<contributor>
|
||||
<name>David M. Sledge</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael A. Smith</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jan Sorensen</name>
|
||||
</contributor>
|
||||
|
|
|
@ -51,7 +51,6 @@ import java.util.List;
|
|||
* after all the setup operations are complete.</p>
|
||||
*
|
||||
* @since Commons Collections 2.0
|
||||
* @author Morgan Delagrange
|
||||
* @version $Revision$ $Date$
|
||||
*/
|
||||
public class ComparatorChain<E> implements Comparator<E>, Serializable {
|
||||
|
|
|
@ -30,9 +30,6 @@ import java.util.Comparator;
|
|||
*
|
||||
* @since Commons Collections 2.1
|
||||
* @version $Revision$ $Date$
|
||||
*
|
||||
* @author Paul Jack
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
public class ComparatorUtils {
|
||||
|
||||
|
|
|
@ -42,10 +42,6 @@ import java.util.Map;
|
|||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision$ $Date$
|
||||
*
|
||||
* @author David Leppik
|
||||
* @author Stephen Colebourne
|
||||
* @author Janek Bogucki
|
||||
*/
|
||||
public class FixedOrderComparator<T> implements Comparator<T> {
|
||||
|
||||
|
|
|
@ -25,8 +25,6 @@ import java.util.Comparator;
|
|||
*
|
||||
* @since Commons Collections 2.0
|
||||
* @version $Revision$ $Date$
|
||||
*
|
||||
* @author Michael A. Smith
|
||||
*/
|
||||
public class NullComparator<E> implements Comparator<E>, Serializable {
|
||||
|
||||
|
|
|
@ -26,8 +26,6 @@ import java.util.Comparator;
|
|||
* @since Commons Collections 2.0
|
||||
* @version $Revision$ $Date$
|
||||
*
|
||||
* @author Michael A. Smith
|
||||
*
|
||||
* @see java.util.Collections#reverseOrder()
|
||||
*/
|
||||
public class ReverseComparator<E> implements Comparator<E>, Serializable {
|
||||
|
|
Loading…
Reference in New Issue