summaryrefslogtreecommitdiffstats
path: root/bundles
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2005-04-28 14:37:36 +0000
committerSilenio Quarti <silenio>2005-04-28 14:37:36 +0000
commit2d7267512fd437c84cd22990969a90e51927f944 (patch)
treebb14feb6b8df2f6a0fa4ee086123d4a51ea3a13f /bundles
parent860a8187b518ea55f8d82658eade9d2c12edbcf0 (diff)
downloadeclipse.platform.swt-2d7267512fd437c84cd22990969a90e51927f944.tar.gz
eclipse.platform.swt-2d7267512fd437c84cd22990969a90e51927f944.tar.xz
eclipse.platform.swt-2d7267512fd437c84cd22990969a90e51927f944.zip
removing isIdentity()
Diffstat (limited to 'bundles')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java5
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();