Created
January 25, 2020 06:33
-
-
Save stolarczykt/71e8223f555a431b67cdba8ce30a9d56 to your computer and use it in GitHub Desktop.
Example of control coupling
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 void save(boolean validationRequired) { | |
if (validationRequired) { | |
validate(); | |
store(); | |
} else { | |
store(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment