clementbera | 824ce75 | 2019-09-24 14:07:20 +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 Instant { | ||||
8 | |||||
9 | public static Instant ofEpochSecond(long seconds, long nanos) { | ||||
10 | return null; | ||||
11 | } | ||||
12 | |||||
13 | public long getEpochSecond() { | ||||
14 | return 0L; | ||||
15 | } | ||||
16 | |||||
17 | public int getNano() { | ||||
18 | return 0; | ||||
19 | } | ||||
20 | } |