Closure complains about unreachable code. Fix.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 9 Oct 2010 21:46:58 +0000 (17:46 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 9 Oct 2010 21:46:58 +0000 (17:46 -0400)
web_frontend/file.js

index 438534ef8b1b5ebd228becf2fb52ba1de4c2e039..5f8aa9e3c1d44eff90a2ac81561176b3797f81f1 100644 (file)
@@ -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;
+*/
 };
 
 /**