From d1520204ea3e55acdab5a0d6fb03154ffe50d538 Mon Sep 17 00:00:00 2001 From: Ahmed Ashour Date: Wed, 20 Sep 2017 08:18:37 +0200 Subject: Use simple class names --- .../src/main/java/com/vaadin/v7/ui/Table.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java') diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java index 11f69f5b01..8fd401e393 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java @@ -5327,9 +5327,9 @@ public class Table extends AbstractSelect implements Action.Container, HEADER_CLICK_METHOD = HeaderClickListener.class .getDeclaredMethod("headerClick", new Class[] { HeaderClickEvent.class }); - } catch (final java.lang.NoSuchMethodException e) { + } catch (final NoSuchMethodException e) { // This should never happen - throw new java.lang.RuntimeException(e); + throw new RuntimeException(e); } } @@ -5368,9 +5368,9 @@ public class Table extends AbstractSelect implements Action.Container, FOOTER_CLICK_METHOD = FooterClickListener.class .getDeclaredMethod("footerClick", new Class[] { FooterClickEvent.class }); - } catch (final java.lang.NoSuchMethodException e) { + } catch (final NoSuchMethodException e) { // This should never happen - throw new java.lang.RuntimeException(e); + throw new RuntimeException(e); } } @@ -5600,9 +5600,9 @@ public class Table extends AbstractSelect implements Action.Container, COLUMN_RESIZE_METHOD = ColumnResizeListener.class .getDeclaredMethod("columnResize", new Class[] { ColumnResizeEvent.class }); - } catch (final java.lang.NoSuchMethodException e) { + } catch (final NoSuchMethodException e) { // This should never happen - throw new java.lang.RuntimeException(e); + throw new RuntimeException(e); } } @@ -5729,9 +5729,9 @@ public class Table extends AbstractSelect implements Action.Container, METHOD = ColumnReorderListener.class.getDeclaredMethod( "columnReorder", new Class[] { ColumnReorderEvent.class }); - } catch (final java.lang.NoSuchMethodException e) { + } catch (final NoSuchMethodException e) { // This should never happen - throw new java.lang.RuntimeException(e); + throw new RuntimeException(e); } } -- cgit v1.2.3