Minor Updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-information-widget@92306 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-02-25 19:00:45 +00:00
parent 2c2fc38395
commit d2522f5cb4
1 changed files with 2 additions and 2 deletions

View File

@ -30,10 +30,10 @@ public class TableTypeStore {
return genericElement;
} else {
if(tableType.compareTo(TableType.CODELIST.toString())==0){
return genericElement;
return codelistElement;
} else {
if(tableType.compareTo(TableType.DATASET.toString())==0){
return genericElement;
return datasetElement;
} else {
return null;
}