From 05748c854c9eb759fcd68612d8be883cdde206af Mon Sep 17 00:00:00 2001 From: "Olga.Klisho" Date: Tue, 13 Apr 2021 17:55:23 +0300 Subject: [PATCH] [java] cleanup of inspection description updates ObsoleteCollection GitOrigin-RevId: 2006d98a80ba1f22a3fc4ed85658f6246433cbe9 --- .../src/inspectionDescriptions/ObsoleteCollection.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html index 085869087772..ffb0e3c426f4 100644 --- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html +++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html @@ -1,9 +1,8 @@ -Reports any uses of java.util.Vector -, java.util.Hashtable and java.util.Stack. -Usages of these classes can most often be replaced by uses of -java.util.ArrayList, java.util.HashMap and java.util.ArrayDeque respectively. +Reports any uses of java.util.Vector, java.util.Hashtable and java.util.Stack. +Usages of these classes can most often be replaced by usages of +java.util.ArrayList, java.util.HashMap and java.util.ArrayDeque respectively. While still supported, the former classes were made obsolete by the JDK1.2 collection classes, and should probably not be used in new development.