Remove trailing whitespace in source code

This commit is contained in:
Sam Brannen
2015-03-07 21:16:18 +01:00
parent df1d90f48c
commit d90cee78ef
23 changed files with 521 additions and 521 deletions

View File

@@ -316,16 +316,16 @@ public class SettableListenableFutureTests {
settableListenableFuture.setException(new RuntimeException());
verifyNoMoreInteractions(callback);
}
private static class InterruptableSettableListenableFuture extends SettableListenableFuture<String> {
private boolean interrupted = false;
@Override
protected void interruptTask() {
interrupted = true;
}
boolean calledInterruptTask() {
return interrupted;
}