[java] cleanup of inspection description updates ObsoleteCollection

GitOrigin-RevId: 2006d98a80ba1f22a3fc4ed85658f6246433cbe9
This commit is contained in:
Olga.Klisho
2021-04-15 00:30:13 +03:00
committed by intellij-monorepo-bot
parent 922d69a880
commit 05748c854c
@@ -1,9 +1,8 @@
<html>
<body>
Reports any uses of <b>java.util.Vector</b>
, <b>java.util.Hashtable</b> and <b>java.util.Stack</b>.
Usages of these classes can most often be replaced by uses of
<b>java.util.ArrayList</b>, <b>java.util.HashMap</b> and <b>java.util.ArrayDeque</b> respectively.
Reports any uses of <code>java.util.Vector</code>, <code>java.util.Hashtable</code> and <code>java.util.Stack</code>.
Usages of these classes can most often be replaced by usages of
<code>java.util.ArrayList</code>, <code>java.util.HashMap</code> and <code>java.util.ArrayDeque</code> 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.