summaryrefslogtreecommitdiffstats
path: root/compatibility-client/src
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2017-03-06 15:27:09 +0200
committerHenri Sara <henri.sara@gmail.com>2017-03-07 12:36:54 +0200
commit7646cfa49baeb4029b4af74b3da97b61b3363215 (patch)
treeb1e96d16831fbe824d5de705ac97ea9df5c516f3 /compatibility-client/src
parentdaa42bfd19ae97dc6508add4f6bc69667556ad6b (diff)
downloadvaadin-framework-7646cfa49baeb4029b4af74b3da97b61b3363215.tar.gz
vaadin-framework-7646cfa49baeb4029b4af74b3da97b61b3363215.zip
Add missing since, remove unused command
Diffstat (limited to 'compatibility-client/src')
-rw-r--r--compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java
index ea7901773d..7ba5c9cc82 100644
--- a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java
+++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java
@@ -1316,23 +1316,6 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
private static final String ERROR_CLASS_NAME = "error";
private static final String NOT_EDITABLE_CLASS_NAME = "not-editable";
- ScheduledCommand fieldFocusCommand = new ScheduledCommand() {
- private int count = 0;
-
- @Override
- public void execute() {
- Element focusedElement = WidgetUtil.getFocusedElement();
- if (focusedElement == grid.getElement()
- || focusedElement == Document.get().getBody()
- || count > 2) {
- focusColumn(focusedColumnIndexDOM);
- } else {
- ++count;
- Scheduler.get().scheduleDeferred(this);
- }
- }
- };
-
/**
* A handler for events related to the Grid editor. Responsible for
* opening, moving or closing the editor based on the received event.