rename local loop variable ingore->ignore

This commit is contained in:
javanna 2016-08-10 10:17:54 +02:00 committed by Luca Cavanna
parent 83532ac377
commit 57b90cb6ce

View File

@ -444,7 +444,7 @@ public final class ThreadContext implements Closeable, Writeable {
@Override @Override
public void run() { public void run() {
boolean whileRunning = false; boolean whileRunning = false;
try (ThreadContext.StoredContext ingore = stashContext()){ try (ThreadContext.StoredContext ignore = stashContext()){
ctx.restore(); ctx.restore();
whileRunning = true; whileRunning = true;
in.run(); in.run();
@ -504,7 +504,7 @@ public final class ThreadContext implements Closeable, Writeable {
@Override @Override
protected void doRun() throws Exception { protected void doRun() throws Exception {
boolean whileRunning = false; boolean whileRunning = false;
try (ThreadContext.StoredContext ingore = stashContext()){ try (ThreadContext.StoredContext ignore = stashContext()){
ctx.restore(); ctx.restore();
whileRunning = true; whileRunning = true;
in.doRun(); in.doRun();