AbstractElement changes for revisions 25717:25718

The deprecated method has been removed in Geotk/SIS. The comment in Collection has been replaced by parameterized type as specified by the GeoAPI interface.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r25717:25718 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/metadata/iso/quality/ElementImpl.java
Revision 25717Revision 25718
 *
 * @since 2.4
 */
public synchronized Collection getDates() {
    if (date1 == Long.MIN_VALUE) {
        return Collections.EMPTY_LIST;
    }
 *
 * @since 2.4
 */
public synchronized Collection/*<Date>*/ getDates() {
    if (date1 == Long.MIN_VALUE) {
        return Collections.EMPTY_LIST;
    }
 * Set the date or range of dates on which a data quality measure was applied.
 * The array length is 1 for a single date, or 2 for a range.
 *
 * @deprecated Use {@link #setDate(Collection)} instead.
 */
public synchronized void setDate(final Date[] newValue) {
    checkWritePermission();
 * Set the date or range of dates on which a data quality measure was applied.
 * The array length is 1 for a single date, or 2 for a range.
 *
 * @deprecated Use {@link #setDates(Collection)} instead.
 */
public synchronized void setDate(final Date[] newValue) {
    checkWritePermission();