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 {
65
65
return this . extendObject ( this . copyObject ( obj1 ) , obj2 ) ;
66
66
}
67
67
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
-
85
68
static createElement ( name , attrs , parentElement )
86
69
{
87
70
var element = document . createElement ( name ) ;
You can’t perform that action at this time.
0 commit comments