diff --git a/resources-en/src/inspectionDescriptions/Java8CollectionRemoveIf.html b/resources-en/src/inspectionDescriptions/Java8CollectionRemoveIf.html index b802b0929db7..76e32a516257 100644 --- a/resources-en/src/inspectionDescriptions/Java8CollectionRemoveIf.html +++ b/resources-en/src/inspectionDescriptions/Java8CollectionRemoveIf.html @@ -1,6 +1,6 @@
-The inspection reports the loops which could be collapsed into singleCollection.removeIf call in Java 8.
+The inspection reports the loops which could be collapsed into single Collection.removeIf call.
The loops like this are reported:
@@ -11,6 +11,7 @@ The inspection reports the loops which could be collapsed into single Coll
}
}
+This conversion is available since Java 8 only.
New in 2016.3 \ No newline at end of file diff --git a/resources-en/src/inspectionDescriptions/Java8CollectionsApi.html b/resources-en/src/inspectionDescriptions/Java8CollectionsApi.html index ee30be059d44..9f5e0f34fee1 100644 --- a/resources-en/src/inspectionDescriptions/Java8CollectionsApi.html +++ b/resources-en/src/inspectionDescriptions/Java8CollectionsApi.html @@ -1,11 +1,13 @@ -Inspection detects usages of java's Map when they can be replaced with methods putIfAbsent. For example: -
+Inspection detects usages of java's Map when they can be replaced with methods putIfAbsent.
+
+For example:
+
if (!map.containsKey(aKey)) {
map.put(aKey, aValue);
}
-
+This conversion is available since Java 8 only.
\ No newline at end of file diff --git a/resources-en/src/inspectionDescriptions/Java8ListSort.html b/resources-en/src/inspectionDescriptions/Java8ListSort.html index e1918e6318b2..525188fadeab 100644 --- a/resources-en/src/inspectionDescriptions/Java8ListSort.html +++ b/resources-en/src/inspectionDescriptions/Java8ListSort.html @@ -2,8 +2,7 @@ Inspection detects calls toCollections.sort(list, comparator) which could be replaced with list.sort(comparator).
-+
This conversion is available since Java 8 only.
New in 2016.3 -