Merge "Remove SurfaceControl.setPosition(int, int)"

This commit is contained in:
Michael Wright
2013-02-22 00:05:10 +00:00
committed by Android (Google) Code Review

View File

@@ -339,11 +339,6 @@ public class SurfaceControl {
nativeSetLayer(mNativeObject, zorder);
}
public void setPosition(int x, int y) {
checkNotReleased();
nativeSetPosition(mNativeObject, (float)x, (float)y);
}
public void setPosition(float x, float y) {
checkNotReleased();
nativeSetPosition(mNativeObject, x, y);