We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20833d6 + 9de2df8 commit 6889dc5Copy full SHA for 6889dc5
firebase-firestore/src/main/java/com/google/firebase/firestore/model/SnapshotVersion.java
@@ -37,7 +37,7 @@ public Timestamp getTimestamp() {
37
return timestamp;
38
}
39
40
- /** Returns the microseconds since EPOCH that this snapshot version represents. * */
+ /** Returns the microseconds since EPOCH that this snapshot version represents. */
41
public long toMicroseconds() {
42
return TimeUnit.MICROSECONDS.convert(timestamp.getSeconds(), TimeUnit.SECONDS)
43
+ TimeUnit.MICROSECONDS.convert(timestamp.getNanoseconds(), TimeUnit.NANOSECONDS);
0 commit comments