Fix typo in ScriptDocValues deprecation warnings (#25672)

This commit is contained in:
Antonio Matarrese 2017-07-12 15:17:55 +01:00 committed by Luca Cavanna
parent 55a157e964
commit 8d7cbc43b5
1 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ public abstract class ScriptDocValues<T> extends AbstractList<T> {
*/
@Deprecated
public ReadableDateTime getDate() {
deprecationLogger.deprecated("getDate is no longer necisary on date fields as the value is now a date.");
deprecationLogger.deprecated("getDate is no longer necessary on date fields as the value is now a date.");
return getValue();
}
@ -213,7 +213,7 @@ public abstract class ScriptDocValues<T> extends AbstractList<T> {
*/
@Deprecated
public List<ReadableDateTime> getDates() {
deprecationLogger.deprecated("getDates is no longer necisary on date fields as the values are now dates.");
deprecationLogger.deprecated("getDates is no longer necessary on date fields as the values are now dates.");
return this;
}