diff options
author | Silenio Quarti <silenio> | 2005-04-28 14:37:36 +0000 |
---|---|---|
committer | Silenio Quarti <silenio> | 2005-04-28 14:37:36 +0000 |
commit | 2d7267512fd437c84cd22990969a90e51927f944 (patch) | |
tree | bb14feb6b8df2f6a0fa4ee086123d4a51ea3a13f /bundles | |
parent | 860a8187b518ea55f8d82658eade9d2c12edbcf0 (diff) | |
download | eclipse.platform.swt-2d7267512fd437c84cd22990969a90e51927f944.tar.gz eclipse.platform.swt-2d7267512fd437c84cd22990969a90e51927f944.tar.xz eclipse.platform.swt-2d7267512fd437c84cd22990969a90e51927f944.zip |
removing isIdentity()
Diffstat (limited to 'bundles')
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java index c139763ee7..814c4ca19f 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java @@ -3043,11 +3043,6 @@ public boolean isDisposed() { return handle == 0; } -boolean isIdentity(float[] xform) { - return xform[0] == 1 && xform[1] == 0 && xform[2] == 0 && - xform[3] == 1 && xform[4] == 0 && xform[5] == 0; -} - float measureSpace(int font, int format) { PointF pt = new PointF(); RectF bounds = new RectF(); |