clementbera | 5379f3d | 2019-09-23 13:21:32 +0200 | [diff] [blame] | 1 | // Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | |
| 5 | package j$.time; |
| 6 | |
| 7 | public class LocalDate { |
| 8 | public static LocalDate of(int year, int month, int dayOfMonth) { |
| 9 | return null; |
| 10 | } |
| 11 | |
| 12 | public int getYear() { |
| 13 | return 0; |
| 14 | } |
| 15 | |
| 16 | public int getMonthValue() { |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | public int getDayOfMonth() { |
| 21 | return 0; |
| 22 | } |
| 23 | } |