[ANN] Type Refactoring 0.2.4

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

0
4 comments
Avatar
Permanently deleted user


public void test ()
{
ArrayL]]>ist l = new ArrayList();
l.add (null);
System.out.println ("i = " + l.size ());

}


problem: only 'AbstractList' is suggested.

Alain

0
Avatar
Permanently deleted user

Thanks for trying. Will be fixed soon.

Tom

0
Avatar
Permanently deleted user

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

0
Avatar
Permanently deleted user

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

0

Please sign in to leave a comment.