diff options
author | Scott Kovatch <skovatch> | 2011-01-20 17:15:06 +0000 |
---|---|---|
committer | Scott Kovatch <skovatch> | 2011-01-20 17:15:06 +0000 |
commit | 58a1c34400fc1467528ff3b21c06670bf08b45f1 (patch) | |
tree | 209b8c3b90da5bd22f32fd6443017b591320902b | |
parent | 025a82bb0e01510f64041b6d0a683cb2a67ef4fa (diff) | |
download | eclipse.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.java | 2 |
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; |