Last active
November 3, 2016 14:31
-
-
Save thomaspoignant/b96e4273522785e8fa4aeca1962d1331 to your computer and use it in GitHub Desktop.
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