From 6dab119650f4ef074b5e9a50d89f7e0c80095c78 Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Fri, 5 Oct 2012 20:25:30 +0200 Subject: [PATCH] extensionUtils: Don't warn about missing url This did not have the desired effect and just produces noise. --- js/misc/extensionUtils.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/misc/extensionUtils.js b/js/misc/extensionUtils.js index e0969c45c..14be194ef 100644 --- a/js/misc/extensionUtils.js +++ b/js/misc/extensionUtils.js @@ -120,11 +120,6 @@ function createExtensionObject(uuid, dir, type) { } } - // Encourage people to add this - if (!meta.url) { - log('Warning: Missing "url" property in %s/metadata.json'.format(uuid)); - } - if (uuid != meta.uuid) { throw new Error('uuid "' + meta.uuid + '" from metadata.json does not match directory name "' + uuid + '"'); }