src/net/fortuna/ical4j/model/DateList.java

changeset 3
73bdfa70b04e
parent 0
fb9019fb1bf7
child 4
45d57ecba757
     1.1 --- a/src/net/fortuna/ical4j/model/DateList.java	Tue Feb 10 19:25:00 2015 +0100
     1.2 +++ b/src/net/fortuna/ical4j/model/DateList.java	Tue Feb 10 19:38:00 2015 +0100
     1.3 @@ -195,7 +195,7 @@
     1.4       * timezone of this list.
     1.5       * @param date the date to add
     1.6       * @return true
     1.7 -     * @see List#add(java.lang.Object)
     1.8 +     * @see java.util.List#add(Object)
     1.9       */
    1.10      public final boolean add(final Date date) {
    1.11          if (date instanceof DateTime) {
    1.12 @@ -219,7 +219,7 @@
    1.13       * Where argument is not a <code>net.fortuna.ical4j.model.Date</code>.
    1.14       * @param date the date to add
    1.15       * @return true if the object was added, otherwise false
    1.16 -     * @see List#add(E)
    1.17 +     * @see java.util.List#add(Object)
    1.18       */
    1.19      public final boolean add(final Object date) {
    1.20          if (!(date instanceof Date)) {

mercurial