Last active
November 3, 2016 14:32
-
-
Save thomaspoignant/38c2cedb3606e1dd6ce8e594652842bf to your computer and use it in GitHub Desktop.
For this blog post : https://medium.com/p/564d9ea76a8c
This file contains hidden or 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 ResultType methodName ( | |
FirstArgType firstArg, | |
SecondArgType secondArg, | |
ThirdArgType thirdArg){ | |
LocalVariable localVariable | |
= method(firstArg,secondArg); | |
if(localVariable.isSomething( | |
thirdArg, SOME_CONSTANT)) { | |
doSomething(localVariable); | |
} | |
return localVariable.getSomething(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment