diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DiamondCanBeReplacedWithExplicitTypeArguments.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DiamondCanBeReplacedWithExplicitTypeArguments.html index c97707684e43..43b384ab8806 100644 --- a/plugins/InspectionGadgets/src/inspectionDescriptions/DiamondCanBeReplacedWithExplicitTypeArguments.html +++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DiamondCanBeReplacedWithExplicitTypeArguments.html @@ -3,8 +3,8 @@ This inspection reports instantiation of generic classes where <> (diamond) is used instead of type parameters.
The quick fix replaces the <> (diamond) with the explicit type parameters.
Example of use of the diamond: -
List String> list = new ArrayList<>()
+List <String> list = new ArrayList<>()
The statement above is replaced with the following: -
List String> list = new ArrayList<String>()
+List <String> list = new ArrayList<String>()