Commit bdd4f78e authored by garykac's avatar garykac Committed by Commit bot

[Chromoting] Remove warning for unused strings.

BUG=

Review URL: https://codereview.chromium.org/684373002

Cr-Commit-Position: refs/heads/master@{#302515}
parent 4948d9b8
......@@ -169,19 +169,8 @@
'host/win/host_messages.mc.jinja2',
'host/win/version.rc.jinja2',
'resources/play_store_resources.cc',
'webapp/crd/js/background.js',
'webapp/crd/js/butter_bar.js',
'webapp/crd/js/client_screen.js',
'webapp/crd/js/error.js',
'webapp/crd/js/host_list.js',
'webapp/crd/js/host_setup_dialog.js',
'webapp/crd/js/host_table_entry.js',
'webapp/crd/js/it2me_helpee_channel.js',
'webapp/crd/js/options_menu.js',
'webapp/crd/js/paired_client_manager.js',
'webapp/crd/js/remoting.js',
'webapp/crd/js/window_frame.js',
'webapp/crd/manifest.json.jinja2',
'<@(remoting_webapp_all_js_files)',
],
},
'actions': [
......
......@@ -93,8 +93,7 @@ def VerifyFile(filename, messages, used_tags):
"""
Parse |filename|, looking for tags and report any that are not included in
|messages|. Return True if all tags are present and correct, or False if
any are missing. If no tags are found, print a warning message and return
True.
any are missing.
"""
base_name, file_type = os.path.splitext(filename)
......@@ -118,8 +117,6 @@ def VerifyFile(filename, messages, used_tags):
result = False
print '%s/%s:%d: error: Undefined tag: %s' % \
(os.getcwd(), filename, i + 1, tag)
if not matches:
print '%s/%s:0: warning: No tags found' % (os.getcwd(), filename)
f.close()
return result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment