git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-01-04 18:58:32 +00:00
parent 220b87ff78
commit abf6af4735
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/comparators/BooleanComparator.java,v 1.8 2003/10/05 23:21:07 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/comparators/BooleanComparator.java,v 1.9 2004/01/04 18:58:32 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2003 The Apache Software Foundation. All rights
* Copyright (c) 2003-2004 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -61,14 +61,14 @@ import java.io.Serializable;
import java.util.Comparator;
/**
* A {@link Comparator} for {@link Boolean}s.
* A {@link Comparator} for {@link Boolean} objects.
*
* @see #getTrueFirstComparator
* @see #getFalseFirstComparator
* @see #getBooleanComparator
*
* @since Commons Collections 3.0
* @version $Revision: 1.8 $ $Date: 2003/10/05 23:21:07 $
* @version $Revision: 1.9 $ $Date: 2004/01/04 18:58:32 $
*
* @author Rodney Waldhoff
*/