diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-31 15:56:58 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-31 16:40:54 +0300 |
commit | 82806ef9b7f12c66e620a813c7987c0fbea723dc (patch) | |
tree | d9ed9165d7065e63613c306895bd8b3739c3f004 /server/src/main/java/com/vaadin/data/util/BeanUtil.java | |
parent | 277b1a5c2884291ea9312d555dc45545430c1d9c (diff) | |
download | vaadin-framework-82806ef9b7f12c66e620a813c7987c0fbea723dc.tar.gz vaadin-framework-82806ef9b7f12c66e620a813c7987c0fbea723dc.zip |
Format the project using Neon, remove trailing whitespace
Change-Id: I145e20226958910c243b9897bb1e9516919f55cd
Diffstat (limited to 'server/src/main/java/com/vaadin/data/util/BeanUtil.java')
-rw-r--r-- | server/src/main/java/com/vaadin/data/util/BeanUtil.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/src/main/java/com/vaadin/data/util/BeanUtil.java b/server/src/main/java/com/vaadin/data/util/BeanUtil.java index c2aae29629..579eb08b68 100644 --- a/server/src/main/java/com/vaadin/data/util/BeanUtil.java +++ b/server/src/main/java/com/vaadin/data/util/BeanUtil.java @@ -96,8 +96,7 @@ public final class BeanUtil implements Serializable { * if the introspection fails */ public static Class<?> getPropertyType(Class<?> beanType, - String propertyName) - throws IntrospectionException { + String propertyName) throws IntrospectionException { PropertyDescriptor descriptor = getPropertyDescriptor(beanType, propertyName); if (descriptor != null) { |