Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: tracing/tracing/base/category_util.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tracing/tracing/base/base64_test.html ('k') | tracing/tracing/base/color.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/category_util.html
diff --git a/tracing/tracing/base/category_util.html b/tracing/tracing/base/category_util.html
index 7287bbd3ed5a4b2014165a24d00955358d93a28d..8d17f4ea6b661c6127a38e48b2bc82b6bfd995f5 100644
--- a/tracing/tracing/base/category_util.html
+++ b/tracing/tracing/base/category_util.html
@@ -27,8 +27,7 @@ tr.exportTo('tr.b', function() {
*/
function getCategoryParts(category) {
var parts = categoryPartsFor[category];
- if (parts !== undefined)
- return parts;
+ if (parts !== undefined) return parts;
parts = category.split(',');
categoryPartsFor[category] = parts;
return parts;
« no previous file with comments | « tracing/tracing/base/base64_test.html ('k') | tracing/tracing/base/color.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698