INT-1471 fixed the @Overrides tha broke the build

This commit is contained in:
Oleg Zhurakousky
2010-10-25 16:21:50 -04:00
parent ab7dfc3042
commit 0a06b65150
4 changed files with 0 additions and 4 deletions

View File

@@ -66,7 +66,6 @@ public class InboundDirectMessageEndpoint extends AbstractInboundTwitterEndpoint
@Override
Runnable getApiCallback() {
Runnable apiCallback = new Runnable() {
@Override
public void run() {
try {
long sinceId = getMarkerId();

View File

@@ -36,7 +36,6 @@ public class InboundMentionEndpoint extends AbstractInboundTwitterStatusEndpoint
@Override
Runnable getApiCallback() {
Runnable apiCallback = new Runnable() {
@Override
public void run() {
try {
long sinceId = getMarkerId();

View File

@@ -38,7 +38,6 @@ public class InboundTimelineUpdateEndpoint extends AbstractInboundTwitterStatusE
@Override
Runnable getApiCallback() {
Runnable apiCallback = new Runnable() {
@Override
public void run() {
try {
long sinceId = getMarkerId();

View File

@@ -44,7 +44,6 @@ class RateLimitStatusTrigger implements Trigger {
/* (non-Javadoc)
* @see org.springframework.scheduling.Trigger#nextExecutionTime(org.springframework.scheduling.TriggerContext)
*/
@Override
public Date nextExecutionTime(TriggerContext triggerContext) {
if (triggerContext.lastCompletionTime() == null){
return new Date(System.currentTimeMillis());