aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
diff options
context:
space:
mode:
authorAhmed Ashour <asashour@yahoo.com>2017-10-31 17:41:14 +0100
committerPekka Maanpää <pekkamaa@vaadin.com>2017-10-31 18:41:14 +0200
commitd44a5e217d1fc2852adb84cc6ce1c0146ac603f2 (patch)
tree8a497e1b77f4f2f29bc218dc802f11bd3e370d69 /compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
parent3564d4b4ba7c9ff718879d7544aa2e309489c531 (diff)
downloadvaadin-framework-d44a5e217d1fc2852adb84cc6ce1c0146ac603f2.tar.gz
vaadin-framework-d44a5e217d1fc2852adb84cc6ce1c0146ac603f2.zip
Fix end of line comments, which were made by automatic formatter (#10234)
Diffstat (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java')
-rw-r--r--compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
index 766c90197b..484e96d3f7 100644
--- a/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
+++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
@@ -2811,8 +2811,8 @@ public class Table extends AbstractSelect implements Action.Container,
final int length) {
LinkedHashSet<Object> ids = new LinkedHashSet<Object>();
for (int i = 0; i < length; i++) {
- assert itemId != null; // should not be null unless client-server
- // are out of sync
+ // should not be null unless client-server are out of sync
+ assert itemId != null;
ids.add(itemId);
itemId = nextItemId(itemId);
}