Ver código fonte

Replace with multi-catch

Change-Id: I80b73b653e97904605dc62484a7448f3bfbf7216
tags/8.0.0.alpha6
Per-Åke Minborg 7 anos atrás
pai
commit
557721f86e

+ 3
- 4
server/src/main/java/com/vaadin/navigator/Navigator.java Ver arquivo

@@ -340,13 +340,12 @@ public class Navigator implements Serializable {
try {
View view = viewClass.newInstance();
return view;
} catch (InstantiationException e) {
// TODO error handling
throw new RuntimeException(e);
} catch (IllegalAccessException e) {
} catch (InstantiationException | IllegalAccessException e) {
// TODO error handling
throw new RuntimeException(e);
}
// TODO error handling
}
return null;
}

+ 1
- 7
server/src/main/java/com/vaadin/server/GAEVaadinServlet.java Ver arquivo

@@ -341,13 +341,7 @@ public class GAEVaadinServlet extends VaadinServlet {
VaadinSession vaadinSession = (VaadinSession) ois.readObject();
getService().storeSession(vaadinSession,
new WrappedHttpSession(session));
} catch (IOException e) {
getLogger().log(Level.WARNING,
"Could not de-serialize ApplicationContext for "
+ session.getId()
+ " A new one will be created. ",
e);
} catch (ClassNotFoundException e) {
} catch (IOException | ClassNotFoundException e) {
getLogger().log(Level.WARNING,
"Could not de-serialize ApplicationContext for "
+ session.getId()

+ 1
- 5
server/src/main/java/com/vaadin/server/ServletPortletHelper.java Ver arquivo

@@ -183,11 +183,7 @@ public class ServletPortletHelper implements Serializable {
} catch (ClassCastException e) {
throw new ServiceException("UIProvider class " + uiProviderProperty
+ " does not extend UIProvider", e);
} catch (InstantiationException e) {
throw new ServiceException(
"Could not instantiate UIProvider " + uiProviderProperty,
e);
} catch (IllegalAccessException e) {
} catch (InstantiationException | IllegalAccessException e) {
throw new ServiceException(
"Could not instantiate UIProvider " + uiProviderProperty,
e);

+ 1
- 3
server/src/main/java/com/vaadin/ui/Grid.java Ver arquivo

@@ -601,9 +601,7 @@ public class Grid<T> extends AbstractSingleSelect<T> implements HasComponents {
try {
type = (getState(false).getClass()
.getDeclaredField(diffStateKey).getGenericType());
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (SecurityException e) {
} catch (NoSuchFieldException | SecurityException e) {
e.printStackTrace();
}
EncodeResult encodeResult = JsonCodec.encode(

+ 2
- 7
server/src/main/java/com/vaadin/ui/declarative/FieldBinder.java Ver arquivo

@@ -86,9 +86,7 @@ public class FieldBinder implements Serializable {
if (value == null) {
unboundFields.add(f.getName());
}
} catch (IllegalArgumentException e) {
throw new FieldBindingException("Could not get field value", e);
} catch (IllegalAccessException e) {
} catch (IllegalArgumentException | IllegalAccessException e) {
throw new FieldBindingException("Could not get field value", e);
}
}
@@ -197,10 +195,7 @@ public class FieldBinder implements Serializable {
field.set(bindTarget, instance);
}
return true;
} catch (IllegalAccessException e) {
throw new FieldBindingException(
"Field binding failed for " + identifier, e);
} catch (IllegalArgumentException e) {
} catch (IllegalAccessException | IllegalArgumentException e) {
throw new FieldBindingException(
"Field binding failed for " + identifier, e);
}

Carregando…
Cancelar
Salvar