Add @Override to remaining source files

Issue: SPR-10130
This commit is contained in:
Rob Winch
2013-05-13 16:47:34 -05:00
parent 30db112d37
commit 9468548116
1279 changed files with 5825 additions and 2 deletions

View File

@@ -40,6 +40,7 @@ public class AbstractSockJsServiceTests extends AbstractHttpRequestTests {
private WebSocketHandler handler;
@Override
@Before
public void setUp() {
super.setUp();

View File

@@ -32,6 +32,7 @@ public class StubSockJsConfig implements SockJsConfiguration {
private TaskScheduler taskScheduler = new ThreadPoolTaskScheduler();
@Override
public int getStreamBytesLimit() {
return streamBytesLimit;
}
@@ -40,6 +41,7 @@ public class StubSockJsConfig implements SockJsConfiguration {
this.streamBytesLimit = streamBytesLimit;
}
@Override
public long getHeartbeatTime() {
return heartbeatTime;
}
@@ -48,6 +50,7 @@ public class StubSockJsConfig implements SockJsConfiguration {
this.heartbeatTime = heartbeatTime;
}
@Override
public TaskScheduler getTaskScheduler() {
return taskScheduler;
}

View File

@@ -38,6 +38,7 @@ public class DefaultSockJsServiceTests extends AbstractHttpRequestTests {
private DefaultSockJsService service;
@Override
@Before
public void setUp() {
super.setUp();