diff options
author | Konstantin Kuzmin <kocc95@mail.ru> | 2020-04-07 12:19:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 13:19:02 +0300 |
commit | 7b063207119ea708551888a41f3d53e86681fb59 (patch) | |
tree | 7fffcdaad739727bc028a69ff9f31dfba3135e12 /server/src/main/java/com/vaadin/data | |
parent | 4af3147bbf862a77c36d794838589a12e4fc6dd2 (diff) | |
download | vaadin-framework-7b063207119ea708551888a41f3d53e86681fb59.tar.gz vaadin-framework-7b063207119ea708551888a41f3d53e86681fb59.zip |
Remove unnecessary null-check at ValueContext constructors (#11915)
Diffstat (limited to 'server/src/main/java/com/vaadin/data')
-rw-r--r-- | server/src/main/java/com/vaadin/data/ValueContext.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/server/src/main/java/com/vaadin/data/ValueContext.java b/server/src/main/java/com/vaadin/data/ValueContext.java index b4a5012179..b332960a1f 100644 --- a/server/src/main/java/com/vaadin/data/ValueContext.java +++ b/server/src/main/java/com/vaadin/data/ValueContext.java @@ -17,7 +17,6 @@ package com.vaadin.data; import java.io.Serializable; import java.util.Locale; -import java.util.Objects; import java.util.Optional; import com.vaadin.ui.Component; @@ -67,8 +66,6 @@ public class ValueContext implements Serializable { */ @SuppressWarnings("unchecked") public ValueContext(Component component) { - Objects.requireNonNull(component, - "Component can't be null in ValueContext construction"); this.component = component; if (component instanceof HasValue) { hasValue = (HasValue<?>) component; @@ -88,8 +85,6 @@ public class ValueContext implements Serializable { * @since 8.1 */ public ValueContext(Component component, HasValue<?> hasValue) { - Objects.requireNonNull(component, - "Component can't be null in ValueContext construction"); this.component = component; this.hasValue = hasValue; locale = findLocale(); |