File tree 2 files changed +0
-16
lines changed
src/com/google/javascript/jscomp
2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ public static DiagnosticGroup forName(String name) {
163
163
+ "underscore, "
164
164
+ "unknownDefines, "
165
165
+ "unusedLocalVariables, "
166
- + "unusedPrivateMembers, "
167
166
+ "uselessCode, "
168
167
+ "untranspilableFeatures,"
169
168
+ "visibility" ;
@@ -518,24 +517,10 @@ public static DiagnosticGroup forName(String name) {
518
517
public static final DiagnosticGroup DEPRECATED_ANNOTATIONS =
519
518
DiagnosticGroups .registerGroup ("deprecatedAnnotations" , CheckJSDoc .ANNOTATION_DEPRECATED );
520
519
521
- /**
522
- * @deprecated this check has been moved into the "lintChecks" group
523
- */
524
- @ Deprecated
525
- public static final DiagnosticGroup UNUSED_PRIVATE_PROPERTY =
526
- DiagnosticGroups .registerDeprecatedGroup ("unusedPrivateMembers" );
527
-
528
520
public static final DiagnosticGroup UNUSED_LOCAL_VARIABLE =
529
521
DiagnosticGroups .registerGroup (
530
522
"unusedLocalVariables" , VariableReferenceCheck .UNUSED_LOCAL_ASSIGNMENT );
531
523
532
- /**
533
- * @deprecated this check has been moved into the "lintChecks" group
534
- */
535
- @ Deprecated
536
- public static final DiagnosticGroup MISSING_CONST_PROPERTY =
537
- DiagnosticGroups .registerDeprecatedGroup ("jsdocMissingConst" );
538
-
539
524
public static final DiagnosticGroup JSDOC_MISSING_TYPE =
540
525
DiagnosticGroups .registerGroup (
541
526
"jsdocMissingType" , RhinoErrorReporter .JSDOC_MISSING_TYPE_WARNING );
Original file line number Diff line number Diff line change @@ -211,7 +211,6 @@ jsdoc.suppressions =\
211
211
unknownDefines,\
212
212
untranspilableFeatures,\
213
213
unusedLocalVariables,\
214
- unusedPrivateMembers,\
215
214
useOfGoogProvide,\
216
215
uselessCode,\
217
216
visibility,\
You can’t perform that action at this time.
0 commit comments