## What problem are you trying to solve? Increase readability. Follow conventions. ## Describe the situation before applying the recipe <!-- Ideally as a self-contained code example, as a start to the recipe unit tests. --> ```java class A { void foo(String bar) { int i = Integer.valueOf(bar); } String myField = "important"; } ``` ## Describe the situation after applying the recipe <!-- Ideally as a self-contained code example, as a start to the recipe unit tests. --> ```java class A { String myField = "important"; void foo(String bar) { int i = Integer.valueOf(bar); } } ```