Skip to content

Commit e529070

Browse files
committed
GatewayPreprocessor: add missing final keywords
1 parent 199360e commit e529070

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/org/scijava/module/process/GatewayPreprocessor.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,22 +87,22 @@ private <G extends Gateway> void setGatewayValue(final Context context,
8787
try {
8888
gateway = type.getConstructor(Context.class).newInstance(context);
8989
}
90-
catch (IllegalArgumentException exc) {
90+
catch (final IllegalArgumentException exc) {
9191
exception = exc;
9292
}
93-
catch (SecurityException exc) {
93+
catch (final SecurityException exc) {
9494
exception = exc;
9595
}
96-
catch (InstantiationException exc) {
96+
catch (final InstantiationException exc) {
9797
exception = exc;
9898
}
99-
catch (IllegalAccessException exc) {
99+
catch (final IllegalAccessException exc) {
100100
exception = exc;
101101
}
102-
catch (InvocationTargetException exc) {
102+
catch (final InvocationTargetException exc) {
103103
exception = exc;
104104
}
105-
catch (NoSuchMethodException exc) {
105+
catch (final NoSuchMethodException exc) {
106106
exception = exc;
107107
}
108108
if (exception != null) {

0 commit comments

Comments
 (0)