diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-09-21 10:51:51 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-21 11:51:51 +0300 |
commit | 867006d2f81aa813c36f614fc6f1b98a5937c5f3 (patch) | |
tree | fb2c34b1b58db8b3610a4a47010196069e90c436 /server/src/main/java/com/vaadin/ui/CustomLayout.java | |
parent | 719b12e44afc8b62458b1e29d1503e28544acc24 (diff) | |
download | vaadin-framework-867006d2f81aa813c36f614fc6f1b98a5937c5f3.tar.gz vaadin-framework-867006d2f81aa813c36f614fc6f1b98a5937c5f3.zip |
Use String.isEmpty() (#10045)
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/CustomLayout.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/CustomLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main/java/com/vaadin/ui/CustomLayout.java b/server/src/main/java/com/vaadin/ui/CustomLayout.java index 0293b0a648..d44a02f52e 100644 --- a/server/src/main/java/com/vaadin/ui/CustomLayout.java +++ b/server/src/main/java/com/vaadin/ui/CustomLayout.java @@ -307,7 +307,7 @@ public class CustomLayout extends AbstractLayout implements LegacyComponent { // Workaround to make the CommunicationManager read the template file // and send it to the client String templateName = getState(false).templateName; - if (templateName != null && templateName.length() != 0) { + if (templateName != null && !templateName.isEmpty()) { Set<Object> usedResources = ((JsonPaintTarget) target) .getUsedResources(); String resourceName = "layouts/" + templateName + ".html"; |