Refactoring 033 - Strip Annotations
Clean up your code by removing unnecessary annotations
Sep 1, 20253 min read59

Search for a command to run...
Articles tagged with #programming-languages
Clean up your code by removing unnecessary annotations

Favor immutability by converting attributes to sets

Don't Repeat Yourself

If I see a Variable that does not change. I call that variable a constant

Using your local language is a great idea because domain naming is easier. Not

Breaking the code to favor readability asks for refactor. TL;DR Don't add empty lines to your methods. Extract them! Problems Readability Kiss Low Reuse Solutions Extract Method Refactor Remove unneeded lines. Sample Code Wrong <? functi...
