mirror of https://github.com/apache/lucene.git
LUCENE-7387: fix defaultCodec in build.xml to account for the line ending
this not only fixes the link in the javadoc to be correct, but also gets precommit working with ant 1.9.6
(cherry picked from commit 280cbfd8fb
)
This commit is contained in:
parent
b90b4dc694
commit
38a67e25ae
|
@ -44,6 +44,11 @@ Other
|
|||
|
||||
* LUCENE-7534: fix smokeTestRelease.py to run on Cygwin (Mikhail Khludnev)
|
||||
|
||||
Build
|
||||
|
||||
* LUCENE-7387: fix defaultCodec in build.xml to account for the line ending (hossman)
|
||||
|
||||
|
||||
======================= Lucene 6.3.0 =======================
|
||||
|
||||
API Changes
|
||||
|
|
|
@ -213,6 +213,8 @@
|
|||
<filterchain>
|
||||
<!-- private static Codec defaultCodec = LOADER . lookup ( "LuceneXXX" ) ; -->
|
||||
<containsregex pattern="^.*defaultCodec\s*=\s*LOADER\s*\.\s*lookup\s*\(\s*"([^"]+)"\s*\)\s*;.*$" replace="\1"/>
|
||||
<fixcrlf eol="unix" eof="remove" />
|
||||
<deletecharacters chars="\n"/>
|
||||
</filterchain>
|
||||
</loadfile>
|
||||
|
||||
|
|
Loading…
Reference in New Issue