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 b0618f2 + 02799ca commit 01c9c1aCopy full SHA for 01c9c1a
firebase-firestore/src/test/java/com/google/firebase/firestore/util/ByteBufferInputStreamTest.java
@@ -68,7 +68,7 @@ public void testHandlesNegativeBytes() throws IOException {
68
ByteBufferInputStream inputStream = new ByteBufferInputStream(source);
69
70
int read = inputStream.read();
71
- // The integer value for byte -1 is 255, as the last three bits are set for -1 in bytes.
+ // The integer value for byte -1 is 255, as the last three bits are set for -1.
72
assertEquals(0xFF, read);
73
assertEquals(-1, (byte) read);
74
}
0 commit comments