| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index a32035426b498e53b62f927050b27b0f64f925ef..d9777e0f35c1575c566b675b4d482d010ee9e617 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -1732,7 +1732,7 @@ def _CheckUselessForwardDeclarations(input_api, output_api):
|
| for decl in useless_fwd_decls:
|
| if input_api.re.search(r'\b%s\b' % decl, line[1:]):
|
| results.append(output_api.PresubmitPromptWarning(
|
| - '%s: %s forward declaration is becoming useless' %
|
| + '%s: %s forward declaration is no longer needed' %
|
| (f.LocalPath(), decl)))
|
| useless_fwd_decls.remove(decl)
|
|
|
|
|