From 5c4185e18dbea02d0d6af9f75170b17dc6d8b76a Mon Sep 17 00:00:00 2001 From: Olli Tietäväinen Date: Tue, 13 Nov 2018 17:00:51 +0200 Subject: removed unnecessary string concatenation --- .../src/main/java/com/vaadin/v7/client/widgets/Grid.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 055fcaef20..3ef3adcc21 100755 --- 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 @@ -6463,7 +6463,7 @@ public class Grid extends ResizeComposite implements HasSelectionHandlers, private void checkColumnIsValidToAdd(Column column, int index) { if (column == this.selectionColumn) { throw new IllegalArgumentException( - "The selection column many " + "not be added manually"); + "The selection column may not be added manually"); } else if (this.selectionColumn != null && index == 0) { throw new IllegalStateException("A column cannot be inserted " + "before the selection column"); -- cgit v1.2.3