Fix build. @Override

Change-Id: Iecc821e610f671f6e08aa98e433a31990af40855
This commit is contained in:
Bill Napier
2010-06-11 13:01:02 -07:00
parent ce3c510c73
commit 4f6ff05e8c

View File

@@ -430,7 +430,6 @@ public class AdbMonkeyDevice extends MonkeyDevice {
LinearInterpolator.Point start = new LinearInterpolator.Point(startx, starty); LinearInterpolator.Point start = new LinearInterpolator.Point(startx, starty);
LinearInterpolator.Point end = new LinearInterpolator.Point(endx, endy); LinearInterpolator.Point end = new LinearInterpolator.Point(endx, endy);
lerp.interpolate(start, end, new LinearInterpolator.Callback() { lerp.interpolate(start, end, new LinearInterpolator.Callback() {
@Override
public void step(Point point) { public void step(Point point) {
try { try {
manager.touchMove(point.getX(), point.getY()); manager.touchMove(point.getX(), point.getY());
@@ -445,7 +444,6 @@ public class AdbMonkeyDevice extends MonkeyDevice {
} }
} }
@Override
public void start(Point point) { public void start(Point point) {
try { try {
manager.touchDown(point.getX(), point.getY()); manager.touchDown(point.getX(), point.getY());
@@ -460,7 +458,6 @@ public class AdbMonkeyDevice extends MonkeyDevice {
} }
} }
@Override
public void end(Point point) { public void end(Point point) {
try { try {
manager.touchUp(point.getX(), point.getY()); manager.touchUp(point.getX(), point.getY());