public LocalDate toLocalDate()

in src/main/java/org/apache/fineract/cn/lang/DateOfBirth.java [66:72]


  public LocalDate toLocalDate() {
    return LocalDate.of(
        this.year,
        this.month != null ? this.month : 1,
        this.day != null ? this.day : 1
    );
  }