Very useful insights, and the small bite-sized sections made it an enjoyable, educative read.
-
We All Grow Older, But Do Our Projects Really Have To?
A brief introduction to modernizing your application using OpenRewrite, and other usecases such as migrations, static analysis fixes, and more.
-
A Minor But Useful Refactoring Technique That Would Reduce Your Code Footprint (Part 2)
As I keep refactoring, this article will focus on a few more interesting ways to do it. These are pretty much minor yet effective and useful changes. Stream.noneMatch() and Stream.anyMatch() In some situations, we need to find a single case …
-
Simplify Protocol Refactoring
The other day, I went grocery shopping. While waiting in line, I thought about some struggles I had in a test I wrote earlier that day.
When it was my turn, the cashier scanned my items and said what I owe him. And I just gave him my whole wallet. He stared at me blankly and gave it back. A little confused for a second, I took out my card, paid, and left the store. And at that point, it hit me what was wrong with my test.
Instead of giving the cashier our whole wallet, let’s just give them what they need. Not more, not less.
Sometimes, you need to make code more trivial to see the higher-level patterns that solve the issue at hand more elegantly.
-
3 Ways to Refactor Your Code in IntelliJ IDEA
In this blog, we’re going to look at 3 ways to refactor your code in IntelliJ IDEA.
Simplifying your code has lots of advantages, including improving readability, tackling technical debt, and managing ever-changing requirements. The three types of refactoring we will look at in this blog are:
– Extracting and Inlining
– Change Signature
– Renaming