My pointcut:

pointcut myPointCut(IGenericType list):
                target(list) && call(void updateList(*));

IGenericType is parametrized, and in my pointcut I don't care about the
actual type. So it works just fine, but compiler throws 'raw type should be
parametrized' warning there, and I cant turn it off via @SuppressAJWarnings
or @SuppressWarnings annotations. It's annoying. Any way to get around it
and turn off that warning?

Thx!
Peter



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to