All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rules.DiamondOperatorForVariableDefinition.md Maven / Gradle / Ivy


Checks that the diamond operator is used where possible.

Valid:
````
Map idTable = new HashMap<>();
````

Invalid:
````
Map idTable = new HashMap();
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy