removed UnusedDeclaration suppression from deprecated members since their usages are ignored anyway now

This commit is contained in:
Alexey Kudravtsev
2016-10-13 12:38:08 +03:00
parent c977814658
commit ffa76a55d0
14 changed files with 8 additions and 26 deletions
@@ -33,11 +33,11 @@ import org.jetbrains.annotations.Nullable;
*/
public class DefaultFileTemplateUsageInspection extends BaseJavaLocalInspectionTool {
// Fields are left for the compatibility
@Deprecated @SuppressWarnings("UnusedDeclaration")
@Deprecated
public boolean CHECK_FILE_HEADER = true;
@Deprecated @SuppressWarnings("UnusedDeclaration")
@Deprecated
public boolean CHECK_TRY_CATCH_SECTION = true;
@Deprecated @SuppressWarnings("UnusedDeclaration")
@Deprecated
public boolean CHECK_METHOD_BODY = true;
@Override