Methods That that are exactly the same except for one parameter.
I recently picked up an app applications to review that had 20 methods, every pair of methods were exactly the same except they were processing two different types of data...
I refactored this into a base class with the majority of the functionality and two child classess that only overrode the processing that was different between the two types of data.
Much easier to understand and if a change to the way things were processed was required I usually only had to make the change in one place in the base class.
