Find unused public members in Eclipse

eclipse, java

Solution

There exists a Eclipse plugin Unused Code Detector (http://www.ucdetector.org/). It can process a specific file or the entire project, searching for unused members/methods.

Problem

I have a class which has 1600 public static members. I must found and delete the unused ones. Is there a way to do it in Eclipse.

Original source