File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -65,23 +65,6 @@ class Utilities {
6565 return this . extendObject ( this . copyObject ( obj1 ) , obj2 ) ;
6666 }
6767
68- // Deprecated
69- static createClass ( classConstructor , classMethods )
70- {
71- classConstructor . prototype = classMethods ;
72- return classConstructor ;
73- }
74-
75- // Deprecated
76- static createSubclass ( superclass , classConstructor , classMethods )
77- {
78- classConstructor . prototype = Object . create ( superclass . prototype ) ;
79- classConstructor . prototype . constructor = classConstructor ;
80- if ( classMethods )
81- Utilities . extendObject ( classConstructor . prototype , classMethods ) ;
82- return classConstructor ;
83- }
84-
8568 static createElement ( name , attrs , parentElement )
8669 {
8770 var element = document . createElement ( name ) ;
You can’t perform that action at this time.
0 commit comments