Remove trailing whitespace from Java source code

This commit is contained in:
Sam Brannen
2015-05-06 20:08:42 +02:00
parent edc66d76af
commit 7a690df925
12 changed files with 27 additions and 27 deletions

View File

@@ -56,7 +56,7 @@ import static org.junit.Assert.*;
/**
* Unit tests for the {@link GenericConversionService}.
*
* <p>For tests involving the {@link DefaultConversionService}, see
* <p>For tests involving the {@link DefaultConversionService}, see
* {@link DefaultConversionServiceTests}.
*
* @author Keith Donald

View File

@@ -320,12 +320,12 @@ public class SettableListenableFutureTests {
private static class InterruptableSettableListenableFuture extends SettableListenableFuture<String> {
private boolean interrupted = false;
@Override
protected void interruptTask() {
interrupted = true;
}
boolean calledInterruptTask() {
return interrupted;
}