From 8bb5c5e6e8931a2e1774124288f8910b44561667 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 9 Oct 2010 17:46:58 -0400 Subject: [PATCH] Closure complains about unreachable code. Fix. --- web_frontend/file.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web_frontend/file.js b/web_frontend/file.js index 438534e..5f8aa9e 100644 --- a/web_frontend/file.js +++ b/web_frontend/file.js @@ -84,9 +84,11 @@ armadillo.File.prototype.isDirectory = function() { * Sets the highlight state. */ armadillo.File.prototype.setHighlight = function(h) { - return; // TODO: enable. +/* + // TODO: enable. goog.dom.classes.addRemove(this.element_, this.highlight_, h); this.highlight_ = h; +*/ }; /** -- 2.22.5