1) Is this redundant?
Yes.
2) Am I doing more harm than good?
Yes.
3) Is this good in any way?
No.
4) Why?
Calling clear() on an ArrayList changes the list's size field and then carefully assigns null to the elements of its backing array that that have just become invalid. The code of clear() needs to do this because the references in those elements could cause other objects to remain reachable; i.e. leak memory.
However, when an ArrayList becomes unreachable, the garbage collector won't ever again look at any of the elements of the backing array. The GC's marking process only traverses the reachable objects, and the reclamation process doesn't look at the contents of garbage objects / arrays.
So, basically, calling clear() on an object that it about to become unreachable is a total waste of CPU cycles and memory / VM bandwidth. (And of course it is redundant code that the next guy is going to scratch his head about ...)
In fact, it is even debatable whether calling clear and then reusing a list is a good idea at all:
Calling clear doesn't release / resize the backing array, so you could be left with a huge backing array for a list whose size is usually small.
It is not inconceivable that the garbage collector can free a large enough array and allocate a new one of the same size faster than clear() can do its job. (For a start, the GC can use multiple processors, where a call to clear() will run on one thread.)
Is there a scenario that actually justifies calling clear()?
The only scenario where its is absolutely necessary to clear/reuse a list is when something else references that particular list and you can't update the list references.
There may also be benefit in clearing / reusing lists on platform with constrained memory and/or a slow GC. However, I wouldn't attempt this "optimization" unless I had STRONG evidence that this was a problem. (This kind of optimization makes your code more complicated, and can lead to performance problems of its own if it is done incorrectly.)