Skip to content

Commit

Permalink
No method validation required for timezone components
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Feb 27, 2020
1 parent 495ceeb commit f6d67db
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -43,9 +43,6 @@
import net.fortuna.ical4j.validate.component.VTimeZoneValidator;
import org.apache.commons.lang3.builder.HashCodeBuilder;

import java.io.IOException;
import java.net.URISyntaxException;
import java.text.ParseException;
import java.time.OffsetDateTime;
import java.time.temporal.Temporal;
import java.util.List;
Expand Down Expand Up @@ -227,6 +224,10 @@ && getObservances().getComponent(Observance.DAYLIGHT) == null) {
}
}

@Override
public void validate(Method method) throws ValidationException {
}

/**
* {@inheritDoc}
*/
Expand Down

0 comments on commit f6d67db

Please sign in to comment.