diff --git a/java/java-analysis-api/resources/messages/JavaAnalysisBundle.properties b/java/java-analysis-api/resources/messages/JavaAnalysisBundle.properties index 5113c7f3593d..2ba8a721b6f9 100644 --- a/java/java-analysis-api/resources/messages/JavaAnalysisBundle.properties +++ b/java/java-analysis-api/resources/messages/JavaAnalysisBundle.properties @@ -637,7 +637,7 @@ inspection.extract.method.preview.html=Extract {0} statements to a method, which inspection.extract.method.message=Extract method returning ''{0}'' inspection.extract.method.option.min.length=Minimum length of code to extract:|symbols inspection.extract.method.option.max.parameters=Maximum number of parameters: -inspection.extract.method.dont.suggest.parameters=Don''t suggest to extract method with {0} or more parameters -inspection.extract.method.dont.suggest.length=Don\u2019t suggest to extract methods as short as this +inspection.extract.method.dont.suggest.parameters=Don''t suggest extracting method with {0} or more parameters +inspection.extract.method.dont.suggest.length=Don\u2019t suggest extracting methods as short as this notification.file.system.issue=File Operation Issue notification.content.cannot.move.file=Cannot move ''{0}'' into ''{1}'': {2} diff --git a/java/java-impl/src/inspectionDescriptions/ExtractMethodRecommender.html b/java/java-impl/src/inspectionDescriptions/ExtractMethodRecommender.html index 43a665145cea..b85dad0e5716 100644 --- a/java/java-impl/src/inspectionDescriptions/ExtractMethodRecommender.html +++ b/java/java-impl/src/inspectionDescriptions/ExtractMethodRecommender.html @@ -1,13 +1,13 @@
-Suggests to extract fragments of code to a separate method to make code more clear. +Suggests extracting fragments of code to a separate method to make code more clear. This inspection has a number of heuristics to select good candidates for extraction, including the following ones.