I want to reorganize the source code of a Java class (with Eclipse) encoded as a pure non-object language: there are only instance methods (public or private), but some of them must be static (without depending on the instance fields or other methods).
Can Eclipse detect it and reorganize the code, i.e. to reorganize some "public" methods to "private static"?
source
share