From 182b0080797ea53acfd04ba6533034e14333ffb4 Mon Sep 17 00:00:00 2001 From: Tyler Schultz Date: Wed, 16 May 2012 15:21:17 -0700 Subject: [PATCH] simplify --- contributor_guidelines.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/contributor_guidelines.md b/contributor_guidelines.md index ef8349bb558..d40f1bdd1b2 100644 --- a/contributor_guidelines.md +++ b/contributor_guidelines.md @@ -23,13 +23,6 @@ This is essentially the IntelliJ default Java style. ### Sample code for reference: {% highlight java %} - -@Implements(View.class) public class ShadowView { - @Implementation - public void setOnTouchListener(View.OnTouchListener onTouchListener) { - this.onTouchListener = onTouchListener; - } } - {% endhighlight %}