Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@92834 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-07 16:29:57 +00:00
parent 2a7a6aa39b
commit 49d5a6b1e5
1 changed files with 4 additions and 4 deletions

View File

@ -391,7 +391,7 @@ public class TabularDataController {
case ROWDELETE:
break;
case DUPLICATEDELETE:
openDuplicateRowsDelete();
openDuplicatesRows();
break;
case ANNOTATIONADD:
break;
@ -765,11 +765,11 @@ public class TabularDataController {
}
}
protected void openDuplicateRowsDelete() {
Log.debug("Request Duplicate Rows Delete Tab");
protected void openDuplicatesRows() {
Log.debug("Request Duplicates Rows Tab");
if (trId != null) {
WidgetRequestEvent e = new WidgetRequestEvent(
WidgetRequestType.DUPLICATEROWSDELETEPANEL);
WidgetRequestType.DUPLICATESROWSPANEL);
e.setTrId(trId);
eventBus.fireEvent(e);
}