Java: wording "anonymous inner class" -> "anonymous class"

GitOrigin-RevId: f03d7227721f41dc64a19c647762580b6eb9f159
This commit is contained in:
Bas Leijdekkers
2023-12-28 09:46:10 +01:00
committed by intellij-monorepo-bot
parent 06bfde0897
commit 488935ecea

View File

@@ -449,9 +449,9 @@ recordstore.opened.not.safely.closed.display.name='RecordStore' opened but not s
overly.complex.anonymous.inner.class.display.name=Overly complex anonymous class
cyclomatic.complexity.limit.option=Cyclomatic complexity limit:
overly.complex.anonymous.inner.class.problem.descriptor=Overly complex anonymous class (cyclomatic complexity = {0}) #loc
anonymous.inner.class.with.too.many.methods.display.name=Anonymous inner class with too many methods
anonymous.inner.class.with.too.many.methods.display.name=Anonymous class with too many methods
method.count.limit.option=Method count limit:
anonymous.inner.class.with.too.many.methods.problem.descriptor=Anonymous inner class with too many methods (method count = {0}) #loc
anonymous.inner.class.with.too.many.methods.problem.descriptor=Anonymous class with too many methods (method count = {0}) #loc
overly.complex.class.display.name=Overly complex class
overly.complex.class.problem.descriptor=Overly complex class <code>#ref</code> (cyclomatic complexity = {0}) #loc
overly.coupled.class.display.name=Overly coupled class
@@ -1794,7 +1794,7 @@ package.dot.html.may.be.package.info.exists.problem.descriptor=<code>package.htm
package.dot.html.may.be.package.info.problem.descriptor=<code>package.html</code> may be converted to <code>package-info.java</code>
package.dot.html.may.be.package.info.delete.quickfix=Delete 'package.html'
package.dot.html.may.be.package.info.convert.quickfix=Convert to 'package-info.java'
ignore.anonymous.inner.classes=Ignore anonymous inner classes
ignore.anonymous.inner.classes=Ignore anonymous classes
try.with.identical.catches.display.name=Identical 'catch' branches in 'try' statement
try.with.identical.catches.problem.descriptor=''catch'' branch identical to ''{0}'' branch #loc
if.can.be.switch.display.name='if' can be replaced with 'switch'