aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java
diff options
context:
space:
mode:
Diffstat (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java')
-rw-r--r--compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java
index a5cb55d54c..ca00a8c7e4 100644
--- a/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java
+++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java
@@ -321,9 +321,9 @@ public class Label extends AbstractLegacyComponent implements Property<String>,
VALUE_CHANGE_METHOD = Property.ValueChangeListener.class
.getDeclaredMethod("valueChange",
new Class[] { Property.ValueChangeEvent.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 Label");
}
}