Skip to content

Commit 01dadbd

Browse files
WIP
1 parent aaacb6f commit 01dadbd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/model/value/ObjectValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private FieldMask extractFieldMask(MapValue value) {
111111
}
112112
}
113113

114-
/** Returns Firestore Value Protobuf that backs this ObjectValue */
114+
/** Returns Firestore Value Protobuf that backs this ObjectValue. */
115115
public Value getProto() {
116116
return internalValue;
117117
}

firebase-firestore/src/main/java/com/google/firebase/firestore/model/value/ServerTimestampValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static boolean isServerTimestamp(@Nullable Value value) {
4848
return type != null && SERVER_TIMESTAMP_SENTINEL.equals(type.getStringValue());
4949
}
5050

51-
private Value internalValue;
51+
private final Value internalValue;
5252

5353
public ServerTimestampValue(Value value) {
5454
hardAssert(

firebase-firestore/src/test/java/com/google/firebase/firestore/remote/RemoteSerializerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public void testEncodesDoubles() {
182182

183183
@Test
184184
public void testEncodesStrings() {
185-
List<String> tests = asList("", "a", "abc def", "æ", "\0\ud7ff\ue000\uffff", "(╯°□°)╯︵┻━┻");
185+
List<String> tests = asList("", "a", "abc def", "æ", "\0\ud7ff\ue000\uffff", "(╯°□°)╯︵ ┻━┻");
186186
for (String test : tests) {
187187
FieldValue value = wrap(test);
188188
com.google.firestore.v1.Value proto = valueBuilder().setStringValue(test).build();

0 commit comments

Comments
 (0)