Index: tracing/tracing/base/sinebow_color_generator.html |
diff --git a/tracing/tracing/base/sinebow_color_generator.html b/tracing/tracing/base/sinebow_color_generator.html |
index 436a40641bf8e1508b6d032bdd3d95afad41c761..7ed52d3bf7b5f4e1bb03ae496e23481f0e57dab2 100644 |
--- a/tracing/tracing/base/sinebow_color_generator.html |
+++ b/tracing/tracing/base/sinebow_color_generator.html |
@@ -34,8 +34,9 @@ tr.exportTo('tr.b', function() { |
SinebowColorGenerator.prototype = { |
colorForKey: function(key) { |
- if (!this.keyToColor[key]) |
+ if (!this.keyToColor[key]) { |
this.keyToColor[key] = this.nextColor(); |
+ } |
return this.keyToColor[key]; |
}, |