Skip to content

Commit

Permalink
simplify further
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Schultz committed May 16, 2012
1 parent c64f909 commit 54ebb0d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions contributor_guidelines.md
Expand Up @@ -30,14 +30,6 @@ public class ShadowView {
public void setOnTouchListener(View.OnTouchListener onTouchListener) {
this.onTouchListener = onTouchListener;
}

@Implementation
public boolean dispatchTouchEvent(MotionEvent event) {
if (onTouchListener != null) {
return onTouchListener.onTouch(realView, event);
}
return false;
}
}

{% endhighlight %}

0 comments on commit 54ebb0d

Please sign in to comment.