Merge "Removing unnecessary post when removing DragView"

This commit is contained in:
Winson Chung
2012-01-19 15:17:56 -08:00
committed by Android (Google) Code Review
+1 -5
View File
@@ -222,11 +222,7 @@ public class DragView extends View {
}
void remove() {
post(new Runnable() {
public void run() {
mDragLayer.removeView(DragView.this);
}
});
mDragLayer.removeView(DragView.this);
}
int[] getPosition(int[] result) {