Browse Source

Fix JDK 1.7 dependency in #10426

Change-Id: I465225a36b0d6d9ebb4b40a32bb5ad145bdaca0b
tags/7.1.0.beta1
Henri Sara 11 years ago
parent
commit
b729344737
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      server/src/com/vaadin/data/fieldgroup/BeanFieldGroup.java

+ 2
- 1
server/src/com/vaadin/data/fieldgroup/BeanFieldGroup.java View File

@@ -68,7 +68,8 @@ public class BeanFieldGroup<T> extends FieldGroup {
String minifiedFieldName = minifyFieldName(fieldName);
try {
return getFieldName(beanType, minifiedFieldName);
} catch (SecurityException | NoSuchFieldException e) {
} catch (SecurityException e) {
} catch (NoSuchFieldException e) {
}
}
return null;

Loading…
Cancel
Save