Commit abaf1e10 by olly Committed by kim-vde

Respectful language cleanup

PiperOrigin-RevId: 357587009
parent 7f5b5c9b
...@@ -448,9 +448,9 @@ public final class Loader implements LoaderErrorThrower { ...@@ -448,9 +448,9 @@ public final class Loader implements LoaderErrorThrower {
obtainMessage(MSG_IO_EXCEPTION, new UnexpectedLoaderException(e)).sendToTarget(); obtainMessage(MSG_IO_EXCEPTION, new UnexpectedLoaderException(e)).sendToTarget();
} }
} catch (Error e) { } catch (Error e) {
// We'd hope that the platform would kill the process if an Error is thrown here, but the // We'd hope that the platform would shut down the process if an Error is thrown here, but
// executor may catch the error (b/20616433). Throw it here, but also pass and throw it from // the executor may catch the error (b/20616433). Throw it here, but also pass and throw it
// the handler thread so that the process dies even if the executor behaves in this way. // from the handler thread so the process dies even if the executor behaves in this way.
Log.e(TAG, "Unexpected error loading stream", e); Log.e(TAG, "Unexpected error loading stream", e);
if (!released) { if (!released) {
obtainMessage(MSG_FATAL_ERROR, e).sendToTarget(); obtainMessage(MSG_FATAL_ERROR, e).sendToTarget();
......
...@@ -82,7 +82,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull; ...@@ -82,7 +82,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
* *
* <p>[1] (key1, id1) is removed from the in-memory index ... the index is not stored to disk ... * <p>[1] (key1, id1) is removed from the in-memory index ... the index is not stored to disk ...
* [2] id1 is reused for a different key2 ... the index is not stored to disk ... [3] A file for * [2] id1 is reused for a different key2 ... the index is not stored to disk ... [3] A file for
* key2 is partially written using a path corresponding to id1 ... the process is killed before * key2 is partially written using a path corresponding to id1 ... the process is shut down before
* the index is stored to disk ... [4] The index is read from disk, causing the partially written * the index is stored to disk ... [4] The index is read from disk, causing the partially written
* file to be incorrectly associated to key1 * file to be incorrectly associated to key1
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment