Boda65665 opened a new pull request, #1491: URL: https://github.com/apache/commons-lang/pull/1491
## Description Replaced the redundant generic bound `Class<? extends Object>` with the standard `Class<?>` in two locations: - Line **290** in `getInvokeMethod(...)` - Line **813** in `getInvokeMethod(...)` ### Why This Change? - `? extends Object` is **100% equivalent** to `?` — every class extends `Object`. - Using `Class<?>` is the **idiomatic and recommended** form in Java. - Reduces noise and improves code clarity. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
