You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: branches/mrschmidt-timestamps/google-cloud-clients/google-cloud-firestore/src/main/java/com/google/cloud/firestore/FirestoreImpl.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -104,9 +104,9 @@ class FirestoreImpl implements Firestore {
104
104
+ "instead expect a Timestamp. For example:\n"
105
105
+ "\n"
106
106
+ "// Old:\n"
107
-
+ "java.util.Date date = snapshot.getDate(\"created_at\");\n"
107
+
+ "java.util.Date date = (java.util.Date) snapshot.get(\"created_at\");\n"
0 commit comments