Arthur van Leeuwen
Results
2
issues of
Arthur van Leeuwen
The FinalizePrivateFields recipe finalizes inner class fields even when there is an assignment to the field from an outer class. This breaks the code... The following test to add to...
bug
Suppose we have a switch case: ```java switch (someInt) { case 1: String data = getSomeString(); doThingOneWith(data); break; case 2: data = getSomeOtherString(); doThingTwoWith(data); break; } ``` That will currently...
bug
test provided