How to avoid RAW type warning from IBuildDefinition.getProperties()?
I'm reading the properties from a project area and want to save it a list:
IBuildDefinition buildDefinition = buildClient.getBuildDefinition(buildDefName, new NullProgressMonitor()); List<IBuildProperty> buildProps = buildDefinition.getProperties();
This produces a warning because getProperties() returns a raw-type List. How can I fix the warning because I'm assuming that the API is not going to get changed so that this warning would be avoided in the first place.
Thanks!