1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 18:27:58 +01:00

Remove obsolete comment.

This commit is contained in:
Kris Maglione
2009-11-14 01:47:18 -05:00
parent 209f8f89a3
commit e2a8cd4a68

View File

@@ -826,12 +826,6 @@ const Completion = Module("completion", {
if (!obj) if (!obj)
return []; return [];
// XPCNativeWrappers, etc, don't show all accessible
// members until they're accessed, so, we look at
// the wrappedJSObject instead, and return any keys
// available in the object itself.
let orig = obj;
if (modules.isPrototypeOf(obj)) if (modules.isPrototypeOf(obj))
compl = [v for (v in Iterator(obj))]; compl = [v for (v in Iterator(obj))];
else { else {