diff options
author | Anatoly Spektor <aspektor@redhat.com> | 2012-12-13 15:14:45 -0500 |
---|---|---|
committer | Anatoly Spektor <aspektor@redhat.com> | 2012-12-13 15:14:45 -0500 |
commit | 05b13d0ffb4737b05a3d74869baaa9de08b75dff (patch) | |
tree | 62974571311e3a08500f19cc3b5c433d489d78f8 | |
parent | 2375b6c0dfc6d7cd48ac25cf6365d534ab87eb8c (diff) | |
download | eclipse.platform.swt-05b13d0ffb4737b05a3d74869baaa9de08b75dff.tar.gz eclipse.platform.swt-05b13d0ffb4737b05a3d74869baaa9de08b75dff.tar.xz eclipse.platform.swt-05b13d0ffb4737b05a3d74869baaa9de08b75dff.zip |
Remove debugging code
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java index 7fa5d48d29..1d7d3ff446 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java @@ -1755,7 +1755,6 @@ void insert (String string) { void onTextMouseClick(GdkEventButton event) { Point sel = getSelection(); for (int i = 0; i < fieldCount; i++) { - System.out.println(sel.x+">="+fieldIndices[i].x+"&&"+sel.x+" <= "+fieldIndices[i].y); if (sel.x >= fieldIndices[i].x && sel.x <= fieldIndices[i].y) { currentField = i; break; |