Making the object less chatty

This commit is contained in:
Joe Bowser 2013-11-29 13:59:36 -08:00
parent 41cace9a96
commit 46e7359372

View File

@ -522,8 +522,6 @@ public class CordovaWebView extends WebView {
{
super.onScrollChanged(l, t, oldl, oldt);
//We should post a message that the scroll changed
LOG.d(TAG, "Scroll changed: oldl = %d, l = %d", oldl, l);
LOG.d(TAG, "Scroll changed: oldt = %d, t = %d", oldt, t);
ScrollEvent myEvent = new ScrollEvent(l, t, oldl, oldt, this);
this.postMessage("onScrollChanged", myEvent);
}