Created
September 26, 2017 23:39
-
-
Save stephanenicolas/978db5137e776bdb48292c4a8961d86d to your computer and use it in GitHub Desktop.
Non-Static methods hidden parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class MainActivity extends Activity { | |
public void onArticleSelected(int position) { | |
} | |
public static void onArticleSelected(MainActivity activity, int position) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment