blob: bc399ac9e91cae4717e240d4d34ad72064e95fa1 [file] [log] [blame]
clementbera824ce752019-09-24 14:07:20 +02001// 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
5package j$.time;
6
7public 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}