The Eclipse 3.6.x Java
compiler has been changed to warn you about the use of raw types even
if the code is marked with the
@SuppressWarnings("unchecked")
statement.
To prevent these warnings,
Java files imported from AppDev Studio 3.4 need
@SuppressWarnings("unchecked")
statements changed to the following:
@SuppressWarnings("rawtypes")
If this code causes
the unchecked warnings to reappear, suppress both types of warnings
by changing the code to the following:
@SuppressWarnings({"unchecked", "rawtypes"})
Templates in AppDev
Studio 3.41 already include these changes where needed.