summaryrefslogtreecommitdiff
path: root/wikipedia
diff options
context:
space:
mode:
authorPhilip Chimento <philip@endlessm.com>2014-03-14 11:28:31 -0700
committerPhilip Chimento <philip@endlessm.com>2014-03-14 11:28:59 -0700
commit6b955b12cff18319aa801d21bfcea309eedec539 (patch)
tree9af90b7749f0d83f0b47f87d250ab6c68a1499f1 /wikipedia
parent248f04c6a5a45b3d6af0cd498cedbe01a3fa8649 (diff)
Remove manual garbage collection
It's not necessary anymore if we patch GJS so that the garbage collection runs at reasonable intervals. [endlessm/eos-shell#2026]
Diffstat (limited to 'wikipedia')
-rw-r--r--wikipedia/views/domain_wiki_view.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/wikipedia/views/domain_wiki_view.js b/wikipedia/views/domain_wiki_view.js
index 7483767..a2f7419 100644
--- a/wikipedia/views/domain_wiki_view.js
+++ b/wikipedia/views/domain_wiki_view.js
@@ -1,6 +1,5 @@
const EndlessWikipedia = imports.wikipedia.EndlessWikipedia;
const Lang = imports.lang;
-const System = imports.system;
const GObject = imports.gi.GObject;
const Gtk = imports.gi.Gtk;
const Gdk = imports.gi.Gdk;
@@ -57,16 +56,6 @@ const DomainWikiView = new Lang.Class({
})
this._window.show_all();
-
- // A temporary measure to prevent memory usage from blowing up. The app
- // will sometimes allocate pixbufs as part of its draw function and gjs
- // will not cleanup unused pixbufs unless we force it to.
- this._window.connect_after("draw", function () {
- Gdk.threads_add_idle(GLib.PRIORITY_LOW, function () {
- System.gc();
- return false;
- });
- });
},
create_front_page: function(){