Added fix to parametric class T instead of generic ?

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/widgets/workspace-explorer@129089 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2016-06-13 13:53:34 +00:00
parent 324dfb036d
commit 803d02da62
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public abstract class AbstractItemsCellTable<T> {
// initTable(cellTable, null, null);
sortedCellTable.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
ssm = new SingleSelectionModel<>();
ssm = new SingleSelectionModel<T>();
sortedCellTable.setSelectionModel(ssm);
ssm.addSelectionChangeHandler(new Handler() {
@Override