]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix typo in error message (#12077)
authorAnna Koskinen <Ansku@users.noreply.github.com>
Mon, 17 Aug 2020 09:39:41 +0000 (12:39 +0300)
committerGitHub <noreply@github.com>
Mon, 17 Aug 2020 09:39:41 +0000 (12:39 +0300)
client/src/main/java/com/vaadin/client/widgets/Grid.java

index a13446571326d28618ac6475fc4bcd3231129631..6ed2e78b272c4c358bfe9adf95b838f89b5ba265 100755 (executable)
@@ -6733,7 +6733,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
     public <C extends Column<?, T>> C addColumn(C column, int index) {
         if (column == selectionColumn) {
             throw new IllegalArgumentException(
-                    "The selection column many " + "not be added manually");
+                    "The selection column manot be added manually");
         } else if (selectionColumn != null && index == 0) {
             throw new IllegalStateException("A column cannot be inserted "
                     + "before the selection column");