From 7c509e550515ece140d471bb009394ce22a9c2ad Mon Sep 17 00:00:00 2001 From: ydvorzhetskiy Date: Wed, 13 May 2020 23:25:23 +0300 Subject: [PATCH] Fix date in the example --- 2020-02/spring-18/src/main/java/ru/otus/OperatorsExample.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2020-02/spring-18/src/main/java/ru/otus/OperatorsExample.java b/2020-02/spring-18/src/main/java/ru/otus/OperatorsExample.java index 330c656c..92efffa6 100644 --- a/2020-02/spring-18/src/main/java/ru/otus/OperatorsExample.java +++ b/2020-02/spring-18/src/main/java/ru/otus/OperatorsExample.java @@ -24,7 +24,7 @@ public class OperatorsExample { new Person("John", "Dow", "male", LocalDate.of(1992, 3, 12)), new Person("Jane", "Dow", "female", LocalDate.of(2001, 6, 23)), new Person("Howard", "Lovecraft", "male", LocalDate.of(1890, 8, 20)), - new Person("Joanne", "Rowling", "female", LocalDate.of(1965, 6, 31))); + new Person("Joanne", "Rowling", "female", LocalDate.of(1965, 6, 30))); Observable.fromIterable(persons) .filter(