mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-09 03:24:58 +00:00
Identical catch blocks can be combined
This commit is contained in:
parent
b1deb442d1
commit
9fb4f47f35
@ -733,10 +733,8 @@ public static void removeFinalModifier(final Field field, final boolean forceAcc
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (final NoSuchFieldException ignored) {
|
} catch (final NoSuchFieldException | IllegalAccessException ignored) {
|
||||||
// The field class contains always a modifiers field
|
// The field class contains always a modifiers field
|
||||||
} catch (final IllegalAccessException ignored) {
|
|
||||||
// The modifiers field is made accessible
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user