summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-03-02 15:55:34 +0200
committerGitHub <noreply@github.com>2017-03-02 15:55:34 +0200
commit3a39feca6664f463ca6c862ac73cdcebd5cdd797 (patch)
tree1cdbe3cd155ba043dfd9f6712c3e5d5d0bbff127 /shared
parent4095541ec922b4916d08bdcd3f2ef4a1a539e9c8 (diff)
downloadvaadin-framework-3a39feca6664f463ca6c862ac73cdcebd5cdd797.tar.gz
vaadin-framework-3a39feca6664f463ca6c862ac73cdcebd5cdd797.zip
Remove unnecessary full classnames and parenthesis from code (#8681)
This change aims to reduce the number of false positives when comparing Vaadin 7 compatibility package in Vaadin 8 and actual Vaadin 7.7 branch. Conflicting parts are moved to imports as much as possible. Files have been formatted with same Eclipse version.
Diffstat (limited to 'shared')
-rw-r--r--shared/src/main/java/com/vaadin/shared/ui/grid/ColumnResizeMode.java10
-rw-r--r--shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java2
2 files changed, 6 insertions, 6 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnResizeMode.java b/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnResizeMode.java
index b34c391505..7134505125 100644
--- a/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnResizeMode.java
+++ b/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnResizeMode.java
@@ -23,15 +23,15 @@ package com.vaadin.shared.ui.grid;
public enum ColumnResizeMode {
/**
- * When column resize mode is set to Animated, columns
- * are resized as they are dragged.
+ * When column resize mode is set to Animated, columns are resized as they
+ * are dragged.
*/
ANIMATED,
/**
- * When column resize mode is set to Simple, dragging to resize
- * a column will show a marker, and the column will resize only
- * after the mouse button or touch is released.
+ * When column resize mode is set to Simple, dragging to resize a column
+ * will show a marker, and the column will resize only after the mouse
+ * button or touch is released.
*/
SIMPLE
diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java
index a050a70759..f1b6550912 100644
--- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java
+++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java
@@ -143,7 +143,7 @@ public class GridState extends TabIndexState {
/**
* Column resize mode in grid.
- *
+ *
* @since 7.7.5
*/
public ColumnResizeMode columnResizeMode = ColumnResizeMode.ANIMATED;