From 0d36639b75ed0aa6886132a086db368d50a015fd Mon Sep 17 00:00:00 2001 From: Warren Seymour Date: Tue, 13 Sep 2016 13:55:06 +0100 Subject: [PATCH] fix(common): Remove `url()` from LocationService interface - `LocationService.url()` has been deprecated in favour of `setUrl()`, but this interface had not been fully updated. --- src/common/coreservices.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/coreservices.ts b/src/common/coreservices.ts index 85b2e3a19..28a169900 100644 --- a/src/common/coreservices.ts +++ b/src/common/coreservices.ts @@ -59,7 +59,6 @@ export interface CoreServices { export interface LocationServices { setUrl(newurl: string, replace?: boolean): void; - url(): string; path(): string; search(): string; hash(): string;