aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-client
diff options
context:
space:
mode:
authorOlli Tietäväinen <ollit@vaadin.com>2018-11-13 17:00:51 +0200
committerSun Zhe <31067185+ZheSun88@users.noreply.github.com>2018-12-04 10:34:50 +0200
commit5c4185e18dbea02d0d6af9f75170b17dc6d8b76a (patch)
treea310a8e4495ca40ec9ef42e48dd51fde52af900c /compatibility-client
parentb39b875986acacdaebcbec27688e4c7cc5df23f1 (diff)
downloadvaadin-framework-5c4185e18dbea02d0d6af9f75170b17dc6d8b76a.tar.gz
vaadin-framework-5c4185e18dbea02d0d6af9f75170b17dc6d8b76a.zip
removed unnecessary string concatenation
Diffstat (limited to 'compatibility-client')
-rwxr-xr-xcompatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java2
1 files changed, 1 insertions, 1 deletions
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<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 may not be added manually");
} else if (this.selectionColumn != null && index == 0) {
throw new IllegalStateException("A column cannot be inserted "
+ "before the selection column");