Skip to content

Commit

Permalink
Remove deprecated index patterns field methods. (#42643)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeelmers authored Aug 6, 2019
1 parent b94c16d commit 6cd3a67
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/legacy/ui/public/index_patterns/_field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,25 +170,6 @@ export class Field implements FieldType {

return obj.create();
}

/** @deprecated */
public get indexed() {
throw new Error(
'field.indexed has been removed, see https://github.com/elastic/kibana/pull/11969'
);
}
/** @deprecated */
public get analyzed() {
throw new Error(
'field.analyzed has been removed, see https://github.com/elastic/kibana/pull/11969'
);
}
/** @deprecated */
public get doc_values() { // eslint-disable-line
throw new Error(
'field.doc_values has been removed, see https://github.com/elastic/kibana/pull/11969'
);
}
}

Field.prototype.routes = {
Expand Down

0 comments on commit 6cd3a67

Please sign in to comment.