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.
1 parent 3d2d896 commit 9de2df8Copy full SHA for 9de2df8
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