@@ -79,8 +79,6 @@ import EmberArrayProxy from '@ember/array/proxy';
7979import EmberApplication , {
8080 getOwner as applicationGetOwner ,
8181 setOwner as applicationSetOwner ,
82- onLoad as applicationOnLoad ,
83- runLoadHooks as applicationRunLoadHooks ,
8482} from '@ember/application' ;
8583import EmberApplicationInstance from '@ember/application/instance' ;
8684import EmberNamespace from '@ember/application/namespace' ;
@@ -207,8 +205,6 @@ namespace Ember {
207205
208206 // ****@ember /application****
209207 export const getOwner = applicationGetOwner ;
210- export const onLoad = applicationOnLoad ;
211- export const runLoadHooks = applicationRunLoadHooks ;
212208 export const setOwner = applicationSetOwner ;
213209 export const Application = EmberApplication ;
214210 export type Application = EmberApplication ;
@@ -657,8 +653,6 @@ Object.defineProperty(Ember, 'testing', {
657653 enumerable : false ,
658654} ) ;
659655
660- applicationRunLoadHooks ( 'Ember.Application' , EmberApplication ) ;
661-
662656let EmberHandlebars : EmberHandlebars = {
663657 template,
664658 Utils : { } ,
@@ -727,7 +721,4 @@ function defineEmberTestingLazyLoad(key: 'Test') {
727721
728722defineEmberTestingLazyLoad ( 'Test' ) ;
729723
730- // @ts -expect-error Per types, runLoadHooks requires a second parameter. Should we loosen types?
731- applicationRunLoadHooks ( 'Ember' ) ;
732-
733724export default Ember ;
0 commit comments