Collapse similar catches

This commit is contained in:
Business Goose 2022-03-29 03:10:54 +01:00
parent aac81914cb
commit d250001082
No known key found for this signature in database
GPG Key ID: 77DCA801362E9645
1 changed files with 1 additions and 4 deletions

View File

@ -925,10 +925,7 @@ public class Utilities
return (T) field.get(from);
}
catch (NoSuchFieldException ex)
{
}
catch (IllegalAccessException ex)
catch (NoSuchFieldException | IllegalAccessException ignored)
{
}
}