diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-09-20 08:18:37 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-20 10:06:43 +0300 |
commit | d1520204ea3e55acdab5a0d6fb03154ffe50d538 (patch) | |
tree | 218b80c94e0d3e7b1d0a969cc7d56c890f6ab604 /server/src/main/java/com/vaadin/ui/PopupView.java | |
parent | 89693cf4484a44d9bcd960a0fd87c581fb66a269 (diff) | |
download | vaadin-framework-d1520204ea3e55acdab5a0d6fb03154ffe50d538.tar.gz vaadin-framework-d1520204ea3e55acdab5a0d6fb03154ffe50d538.zip |
Use simple class names
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/PopupView.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/PopupView.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/main/java/com/vaadin/ui/PopupView.java b/server/src/main/java/com/vaadin/ui/PopupView.java index d6671be191..6ce6aafe08 100644 --- a/server/src/main/java/com/vaadin/ui/PopupView.java +++ b/server/src/main/java/com/vaadin/ui/PopupView.java @@ -50,9 +50,9 @@ public class PopupView extends AbstractComponent implements HasComponents { POPUP_VISIBILITY_METHOD = PopupVisibilityListener.class .getDeclaredMethod("popupVisibilityChange", PopupVisibilityEvent.class); - } catch (final java.lang.NoSuchMethodException e) { + } catch (final NoSuchMethodException e) { // This should never happen - throw new java.lang.RuntimeException( + throw new RuntimeException( "Internal error finding methods in PopupView"); } } @@ -84,7 +84,7 @@ public class PopupView extends AbstractComponent implements HasComponents { * @param large * the full, Component-type representation */ - public PopupView(final java.lang.String small, final Component large) { + public PopupView(final String small, final Component large) { this(createContent(small, large)); } @@ -165,7 +165,7 @@ public class PopupView extends AbstractComponent implements HasComponents { if (visible) { visibleComponent = content.getPopupComponent(); if (visibleComponent == null) { - throw new java.lang.IllegalStateException( + throw new IllegalStateException( "PopupView.Content did not return Component to set visible"); } if (visibleComponent.getParent() != null) { |