]> source.dussan.org Git - vaadin-framework.git/commitdiff
removed unnecessary string concatenation
authorOlli Tietäväinen <ollit@vaadin.com>
Tue, 13 Nov 2018 15:00:51 +0000 (17:00 +0200)
committerSun Zhe <31067185+ZheSun88@users.noreply.github.com>
Tue, 4 Dec 2018 08:34:50 +0000 (10:34 +0200)
compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java

index 055fcaef208099da3e760b11c2d8ea5ef634a3e1..3ef3adcc210c88098bb06a745554c6d5213e4d9d 100755 (executable)
@@ -6463,7 +6463,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
     private void checkColumnIsValidToAdd(Column<?, T> column, int index) {
         if (column == this.selectionColumn) {
             throw new IllegalArgumentException(
-                "The selection column many " + "not be added manually");
+                "The selection column manot be added manually");
         } else if (this.selectionColumn != null && index == 0) {
             throw new IllegalStateException("A column cannot be inserted "
                 + "before the selection column");