refactor(various): remove a few lingering but unused deprecated apis (#10896)

Removes deprecated APPLICATION_COMMON_PROVIDERS, as well as some
internal apis that were deprecated.
This commit is contained in:
Julie Ralph
2016-08-17 16:36:10 -07:00
committed by Kara
parent 0b62b6f783
commit beb79e75bf
9 changed files with 1 additions and 72 deletions

View File

@ -45,9 +45,6 @@ export abstract class DomAdapter {
abstract logGroup(error: any /** TODO #9100 */): any /** TODO #9100 */;
abstract logGroupEnd(): any /** TODO #9100 */;
/** @deprecated */
getResourceLoader(): Type<any> { return this.resourceLoaderType; }
/**
* Maps attribute names to their corresponding property names for cases
* where attribute name doesn't match property name.

View File

@ -50,8 +50,6 @@ export class WorkerDomAdapter extends DomAdapter {
getProperty(el: Element, name: string): any { throw 'not implemented'; }
invoke(el: Element, methodName: string, args: any[]): any { throw 'not implemented'; }
getResourceLoader(): Type<any> { throw 'not implemented'; }
get attrToPropMap(): {[key: string]: string} { throw 'not implemented'; }
set attrToPropMap(value: {[key: string]: string}) { throw 'not implemented'; }