Skip to content

Commit

Permalink
Remove workaround for ancient Android bug.
Browse files Browse the repository at this point in the history
We no longer support Ice Cream Sandwich, so we no longer need to work around its bugs.

(The special handling was introduced in cl/177472149.)

RELNOTES=n/a
PiperOrigin-RevId: 604677493
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Feb 6, 2024
1 parent 1f81827 commit b5cd4a0
Showing 1 changed file with 4 additions and 33 deletions.
37 changes: 4 additions & 33 deletions core/src/main/java/com/google/common/truth/Truth.java
Original file line number Diff line number Diff line change
Expand Up @@ -330,39 +330,16 @@ public static PathSubject assertThat(@Nullable Path actual) {
}

/**
* An {@code AssertionError} that (a) always supports a cause, even under old versions of Android
* and (b) omits "java.lang.AssertionError:" from the beginning of its toString() representation.
* An {@code AssertionError} that omits "java.lang.AssertionError:" from the beginning of its
* toString() representation.
*/
// TODO(cpovirk): Consider eliminating this, adding its functionality to AssertionErrorWithFacts?
@SuppressWarnings("OverrideThrowableToString") // We intentionally replace the normal format.
static final class SimpleAssertionError extends AssertionError {
/** Separate cause field, in case initCause() fails. */
private final @Nullable Throwable cause;

private SimpleAssertionError(String message, @Nullable Throwable cause) {
super(checkNotNull(message));
this.cause = cause;

try {
initCause(cause);
} catch (IllegalStateException alreadyInitializedBecauseOfHarmonyBug) {
/*
* initCause() throws under old versions of Android:
* https://issuetracker.google.com/issues/36945167
*
* Yes, it's *nice* if initCause() works:
*
* - It ensures that, if someone tries to call initCause() later, the call will fail loudly
* rather than be silently ignored.
*
* - It populates the usual `Throwable.cause` field, where users of debuggers and other
* tools are likely to look first.
*
* But if it doesn't work, that's fine: Most consumers of the cause should be retrieving it
* through getCause(), which we've overridden to return *our* `cause` field, which we've
* populated with the correct value.
*/
}

initCause(cause);
}

static SimpleAssertionError create(String message, @Nullable Throwable cause) {
Expand All @@ -379,12 +356,6 @@ static SimpleAssertionError createWithNoStack(String message) {
return createWithNoStack(message, /* cause= */ null);
}

@Override
@SuppressWarnings("UnsynchronizedOverridesSynchronized")
public @Nullable Throwable getCause() {
return cause;
}

@Override
public String toString() {
return checkNotNull(getLocalizedMessage());
Expand Down

0 comments on commit b5cd4a0

Please sign in to comment.