Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
Java: fix typo in private method name
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Inman-Semerau <luke.semerau@gmail.com>
  • Loading branch information
alb-i986 authored and lukeis committed Feb 18, 2016
1 parent ce4eb56 commit 1bc044a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public <V> V until(Function<? super T, V> isTrue) {
return value;
}
} catch (Throwable e) {
lastException = propagateIfNotIngored(e);
lastException = propagateIfNotIgnored(e);
}

// Check the timeout after evaluating the function to ensure conditions
Expand All @@ -270,7 +270,7 @@ public <V> V until(Function<? super T, V> isTrue) {
}
}

private Throwable propagateIfNotIngored(Throwable e) {
private Throwable propagateIfNotIgnored(Throwable e) {
for (Class<? extends Throwable> ignoredException : ignoredExceptions) {
if (ignoredException.isInstance(e)) {
return e;
Expand Down

0 comments on commit 1bc044a

Please sign in to comment.