LUCENE-6594: Add missing Java 8 signatures (revert this as soon as forbidden-apis was updated)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1686537 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2015-06-20 09:05:38 +00:00
parent c9e267f948
commit 47fcaa5973
1 changed files with 34 additions and 0 deletions

View File

@ -34,3 +34,37 @@ java.io.File#delete() @ use Files.delete for real exception, IOUtils.deleteFiles
@defaultMessage Use shuffle(List, Random) instead so that it can be reproduced
java.util.Collections#shuffle(java.util.List)
# START: forbidden-apis patch
# TODO: remove this once forbidden-apis was updated to next version with following commit:
# https://github.com/policeman-tools/forbidden-apis/commit/c34a02afcd7856478e9adfd32be2fc5bf82ca268
@defaultMessage Uses default time zone
java.time.LocalDateTime#now()
java.time.LocalDate#now()
java.time.LocalTime#now()
java.time.OffsetDateTime#now()
java.time.OffsetTime#now()
java.time.Year#now()
java.time.YearMonth#now()
java.time.MonthDay#now()
java.time.chrono.Chronology#dateNow()
java.time.chrono.HijrahChronology#dateNow()
java.time.chrono.JapaneseChronology#dateNow()
java.time.chrono.MinguoChronology#dateNow()
java.time.chrono.ThaiBuddhistChronology#dateNow()
java.time.chrono.IsoChronology#dateNow()
java.time.chrono.HijrahDate#now()
java.time.chrono.JapaneseDate#now()
java.time.chrono.MinguoDate#now()
java.time.chrono.ThaiBuddhistDate#now()
@defaultMessage Uses default locale
java.time.format.DateTimeFormatterBuilder#toFormatter(java.time.format.ResolverStyle,java.time.chrono.Chronology)
java.time.format.DateTimeFormatter#ofLocalizedDate(java.time.format.FormatStyle)
java.time.format.DateTimeFormatter#ofLocalizedDateTime(java.time.format.FormatStyle,java.time.format.FormatStyle)
java.time.format.DateTimeFormatter#ofLocalizedDateTime(java.time.format.FormatStyle)
java.time.format.DateTimeFormatter#ofLocalizedTime(java.time.format.FormatStyle)
java.time.format.DateTimeFormatter#ofPattern(java.lang.String)
# END: forbidden-apis patch