diff --git a/lib/static_resources.js b/lib/static_resources.js
index fad0b6cff8cb7e0ac77101646ef5062ca36aef03..6ef48a3f3c13f58210f9ed81fb0351139ea4f2c9 100644
--- a/lib/static_resources.js
+++ b/lib/static_resources.js
@@ -156,21 +156,6 @@ exports.all = function(langs) {
   return res;
 };
 
-/** return an array of all minified resources given the set of lang */
-exports.minified = function(langs) {
-  var res = [];
-  Object.keys(exports.resources).forEach(function(resource) {
-    if (resource.indexOf(':locale') != -1) {
-      langs.forEach(function (lang) {
-        res.push(replace(resource, i18n.localeFrom(lang)));
-      });
-    } else {
-      res.push([ resource, null ]);
-    }
-  });
-  return res;
-};
-
 /**
  * Get all resource urls for a specified resource based on the locale
  */