Skip to content
Snippets Groups Projects
Commit d92e85ad authored by brinn's avatar brinn
Browse files

minor: fix raw type warnings

SVN: 19873
parent 7ece1f9d
No related branches found
No related tags found
No related merge requests found
......@@ -294,6 +294,7 @@ final class HibernateSearchDAO extends HibernateDaoSupport implements IHibernate
this.dataProvider = dataProvider;
}
@SuppressWarnings("rawtypes")
public List transformList(List collection)
{
throw new IllegalStateException("This method should not be called");
......
......@@ -32,6 +32,7 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.propert
*/
public class PropertyCheckingManager extends Assert
{
@SuppressWarnings("rawtypes")
private final Map<String, IValueAssertion> expectedProperties =
new HashMap<String, IValueAssertion>();
......
......@@ -100,12 +100,12 @@ public class HeatmapDataset implements XYZDataset
}
// The JFreeChart interface does not use generics
public Comparable getSeriesKey(int series)
public Comparable<?> getSeriesKey(int series)
{
return wrappedDataset.getSeriesKey(series);
}
public int indexOf(Comparable seriesKey)
public int indexOf(@SuppressWarnings("rawtypes") Comparable seriesKey)
{
return wrappedDataset.indexOf(seriesKey);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment