Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
resources-en
/
src
/
inspectionDescriptions
/
DeprecatedDefenderSyntax.html
blob: b82bf836209c59cdba5f433f6de4ee3271fb6612 [
file
]
<html
xmlns
=
"http://www.w3.org/1999/html"
>
<body>
Detects deprecated extension method syntax:
<pre>
void m() default { }
</pre>
Allows to convert it to the correct form:
<pre>
default void m() { }
</pre>
</body>
</html>