[ANN] Type Refactoring 0.2.4 Permanently deleted user Created January 25, 2005 21:09 Hi,I've uploaded version 0.2.4 of the Type Refactoring plug-in. Please try it out and let me know about possible bugs.--Tom
public void test ()
{
ArrayL]]>ist l = new ArrayList();
l.add (null);
System.out.println ("i = " + l.size ());
}
problem: only 'AbstractList' is suggested.
Alain
Thanks for trying. Will be fixed soon.
Tom
I believe, I've found the problem:
PsiSuperMethodUtil.findSuperMethods(<ArrayList.add(Object)>)
now only returns <AbstractList.add(Object)>, but not in AbstractCollection,
List and Collection. This must have changed in one of the last builds.
Tom
Version 0.2.7 solved this problem. I'm sure, IDEA's implementation changed a
little bit in more recent version (getSuperClasses and getSuperMethods),
which caused the misbehaviour.
Tom