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>
|
<contributor>
|
||||||
<name>Norm Deane</name>
|
<name>Norm Deane</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Morgan Delagrange</name>
|
||||||
|
</contributor>
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Ringo De Smet</name>
|
<name>Ringo De Smet</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
@ -266,6 +269,9 @@
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Chris Hyzer</name>
|
<name>Chris Hyzer</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Paul Jack</name>
|
||||||
|
</contributor>
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Marc Johnson</name>
|
<name>Marc Johnson</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
@ -290,6 +296,9 @@
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Rafal Krzewski</name>
|
<name>Rafal Krzewski</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>David Leppik</name>
|
||||||
|
</contributor>
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Eli Lindsey</name>
|
<name>Eli Lindsey</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
@ -374,6 +383,9 @@
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>David M. Sledge</name>
|
<name>David M. Sledge</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Michael A. Smith</name>
|
||||||
|
</contributor>
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Jan Sorensen</name>
|
<name>Jan Sorensen</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
|
|
@ -51,7 +51,6 @@ import java.util.List;
|
||||||
* after all the setup operations are complete.</p>
|
* after all the setup operations are complete.</p>
|
||||||
*
|
*
|
||||||
* @since Commons Collections 2.0
|
* @since Commons Collections 2.0
|
||||||
* @author Morgan Delagrange
|
|
||||||
* @version $Revision$ $Date$
|
* @version $Revision$ $Date$
|
||||||
*/
|
*/
|
||||||
public class ComparatorChain<E> implements Comparator<E>, Serializable {
|
public class ComparatorChain<E> implements Comparator<E>, Serializable {
|
||||||
|
|
|
@ -30,9 +30,6 @@ import java.util.Comparator;
|
||||||
*
|
*
|
||||||
* @since Commons Collections 2.1
|
* @since Commons Collections 2.1
|
||||||
* @version $Revision$ $Date$
|
* @version $Revision$ $Date$
|
||||||
*
|
|
||||||
* @author Paul Jack
|
|
||||||
* @author Stephen Colebourne
|
|
||||||
*/
|
*/
|
||||||
public class ComparatorUtils {
|
public class ComparatorUtils {
|
||||||
|
|
||||||
|
|
|
@ -42,10 +42,6 @@ import java.util.Map;
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision$ $Date$
|
* @version $Revision$ $Date$
|
||||||
*
|
|
||||||
* @author David Leppik
|
|
||||||
* @author Stephen Colebourne
|
|
||||||
* @author Janek Bogucki
|
|
||||||
*/
|
*/
|
||||||
public class FixedOrderComparator<T> implements Comparator<T> {
|
public class FixedOrderComparator<T> implements Comparator<T> {
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,6 @@ import java.util.Comparator;
|
||||||
*
|
*
|
||||||
* @since Commons Collections 2.0
|
* @since Commons Collections 2.0
|
||||||
* @version $Revision$ $Date$
|
* @version $Revision$ $Date$
|
||||||
*
|
|
||||||
* @author Michael A. Smith
|
|
||||||
*/
|
*/
|
||||||
public class NullComparator<E> implements Comparator<E>, Serializable {
|
public class NullComparator<E> implements Comparator<E>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,6 @@ import java.util.Comparator;
|
||||||
* @since Commons Collections 2.0
|
* @since Commons Collections 2.0
|
||||||
* @version $Revision$ $Date$
|
* @version $Revision$ $Date$
|
||||||
*
|
*
|
||||||
* @author Michael A. Smith
|
|
||||||
*
|
|
||||||
* @see java.util.Collections#reverseOrder()
|
* @see java.util.Collections#reverseOrder()
|
||||||
*/
|
*/
|
||||||
public class ReverseComparator<E> implements Comparator<E>, Serializable {
|
public class ReverseComparator<E> implements Comparator<E>, Serializable {
|
||||||
|
|
Loading…
Reference in New Issue