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
/** | |
* Building Maintainable Software - Ten Guidelines for Future Proof Code | |
* https://www.amazon.com/Building-Maintainable-Software-Java-Future-Proof/dp/1491953527 | |
* | |
* Write Simple Units of Code - Dealing with Nesting, page 36. | |
* | |
* I like the example on page 36 because it's simple and just enough to demonstrate how hard is | |
* to write straightforward code, or how easy is to increase the Accidental Complexity of the code. | |
* | |
* There are 4 implementations of the same functionality. The first one is the original code, |