From 4381e8a415e788fe6151b9929c73f27b650b6481 2014-04-15 17:34:26
From: Raffaele De Feo <alberthilbert@gmail.com>
Date: 2014-04-15 17:34:26
Subject: [PATCH] Why overriding a method if the new one is exactly the same of the one
in the base class?

---

diff --git a/IPython/html/static/notebook/js/textcell.js b/IPython/html/static/notebook/js/textcell.js
index 10a358e..9b7724a 100644
--- a/IPython/html/static/notebook/js/textcell.js
+++ b/IPython/html/static/notebook/js/textcell.js
@@ -407,11 +407,6 @@ var IPython = (function (IPython) {
     };
 
 
-    HeadingCell.prototype.set_rendered = function (html) {
-        this.element.find("div.text_cell_render").html(html);
-    };
-
-
     HeadingCell.prototype.get_rendered = function () {
         var r = this.element.find("div.text_cell_render");
         return r.children().first().html();