Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] How to get rid of raw types warning?

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.



Back to the top