summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Kovatch <skovatch>2011-01-20 17:15:06 +0000
committerScott Kovatch <skovatch>2011-01-20 17:15:06 +0000
commit58a1c34400fc1467528ff3b21c06670bf08b45f1 (patch)
tree209b8c3b90da5bd22f32fd6443017b591320902b
parent025a82bb0e01510f64041b6d0a683cb2a67ef4fa (diff)
downloadeclipse.platform.swt-58a1c34400fc1467528ff3b21c06670bf08b45f1.tar.gz
eclipse.platform.swt-58a1c34400fc1467528ff3b21c06670bf08b45f1.tar.xz
eclipse.platform.swt-58a1c34400fc1467528ff3b21c06670bf08b45f1.zip
Don't need public constructor
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java
index 31d1d520eb..76a36716b5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java
@@ -78,7 +78,7 @@ public final class Touch {
* @param x X location of the touch in screen coordinates
* @param y Y location of the touch in screen coordinates
*/
-public Touch (long identity, TouchSource source, int state, boolean primary, int x, int y) {
+Touch (long identity, TouchSource source, int state, boolean primary, int x, int y) {
this.id = identity;
this.source = source;
this.state = state;