messageTray: Clean up "TODO" code

The code here says to remove it after the GNOME3 release. Better late
than never.
This commit is contained in:
Jasper St. Pierre 2012-10-16 12:20:39 -04:00
parent f5974f6793
commit 1496ba0bbd

View File

@ -141,14 +141,9 @@ const URLHighlighter = new Lang.Class({
let url = this._urls[urlId].url;
if (url.indexOf(':') == -1)
url = 'http://' + url;
try {
Gio.app_info_launch_default_for_uri(url, global.create_app_launch_context());
return true;
} catch (e) {
// TODO: remove this after gnome 3 release
Util.spawn(['gvfs-open', url]);
return true;
}
Gio.app_info_launch_default_for_uri(url, global.create_app_launch_context());
return true;
}
return false;
}));