aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2010-07-16 12:50:27 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2010-07-16 12:50:27 +0000
commiteea55c3ad3280338cd124e7a3b1f478ab1f3f42e (patch)
tree7ef9f4b3ba7322ef1fd2bad5626b57deeae4825b /src
parent72663203f4e4be9032597d68d5973dcea4fb2669 (diff)
downloadvaadin-framework-eea55c3ad3280338cd124e7a3b1f478ab1f3f42e.tar.gz
vaadin-framework-eea55c3ad3280338cd124e7a3b1f478ab1f3f42e.zip
fixes #5342
svn changeset:14229/svn branch:6.4
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/ui/Table.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java
index 284840df51..2ee80d7430 100644
--- a/src/com/vaadin/ui/Table.java
+++ b/src/com/vaadin/ui/Table.java
@@ -1864,7 +1864,7 @@ public class Table extends AbstractSelect implements Action.Container,
Object currentItemId = startItemId;
Container.Ordered ordered = (Container.Ordered) items;
- while ((currentItemId != null) && currentItemId.equals(endItemId)) {
+ while ((currentItemId != null) && !currentItemId.equals(endItemId)) {
currentItemId = ordered.nextItemId(currentItemId);
if (currentItemId != null) {
ids.add(currentItemId);