Feature - Implemented Reducing number of warnings: Raw types (easy/straightforward/simple only), batch n°1

fredg1

Member
Been trying to remove IDE warnings recently. This patch focuses on removing raw type warnings by adding Generics here and there (which is a good practice anyway as it helps other devs to understand what is happening).

The ones from this patch are varied, but are only ones that were easy to determine from the context.

All the changes from this patch can be applied individually without breaking anything. No change in this patch is dependant on another (this obviously excludes the removal of some now-redundant type conversions, e.g.
Java:
String x = (String) array.get(0);
. OBVIOUSLY those require the related generic to be applied first)
 

Attachments

  • RandomRawTypes1.patch
    73.8 KB · Views: 0
Top