Java
Redundant type cast
Warning
New
Last modified: 03 December 2024Reports unnecessary cast expressions.
Example:
static Object toObject(String s) {
return (Object) s;
}
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
RedundantCast
Use the checkbox below to ignore clarifying casts e.g., casts in collection calls where Object
is expected:
static void removeFromList(List<String> l, Object o) {
l.remove((String)o);
}
Here you can find the description of settings available for the Redundant type cast inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?