Browse Source

removed unnecessary string concatenation

tags/8.7.0.alpha1
Olli Tietäväinen 5 years ago
parent
commit
5c4185e18d

+ 1
- 1
compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Grid.java View File

@@ -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");

Loading…
Cancel
Save