]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove debug logging
authorArtur Signell <artur@vaadin.com>
Sat, 16 Aug 2014 09:34:56 +0000 (12:34 +0300)
committerVaadin Code Review <review@vaadin.com>
Tue, 26 Aug 2014 14:08:09 +0000 (14:08 +0000)
Change-Id: I8a77fbc3b3d9541e30ac9fee01b1111a4e243b8a

client/src/com/vaadin/client/ui/VSlider.java

index 86e5ef129d57ed8ac8fde4fd8342652be4a11b0b..a6ff8fabb4bdf18306ff2643b3899fac74894eeb 100644 (file)
@@ -35,7 +35,6 @@ import com.google.gwt.user.client.ui.HasValue;
 import com.vaadin.client.ApplicationConnection;
 import com.vaadin.client.BrowserInfo;
 import com.vaadin.client.Util;
-import com.vaadin.client.VConsole;
 import com.vaadin.shared.ui.slider.SliderOrientation;
 
 public class VSlider extends SimpleFocusablePanel implements Field,
@@ -329,13 +328,11 @@ public class VSlider extends SimpleFocusablePanel implements Field,
                 DOM.eventPreventDefault(event); // prevent selecting text
                 DOM.eventCancelBubble(event, true);
                 event.stopPropagation();
-                VConsole.log("Slider move start");
             }
             break;
         case Event.ONMOUSEMOVE:
         case Event.ONTOUCHMOVE:
             if (dragging) {
-                VConsole.log("Slider move");
                 setValueByEvent(event, false);
                 updateFeedbackPosition();
                 event.stopPropagation();
@@ -345,7 +342,6 @@ public class VSlider extends SimpleFocusablePanel implements Field,
             feedbackPopup.hide();
         case Event.ONMOUSEUP:
             // feedbackPopup.hide();
-            VConsole.log("Slider move end");
             dragging = false;
             handle.setClassName(getStylePrimaryName() + "-handle");
             DOM.releaseCapture(getElement());