Merge branch 'master' of github.com:jamesagnew/hapi-fhir

This commit is contained in:
James Agnew 2017-11-23 13:23:36 -05:00
commit 9aea5569de
2 changed files with 21 additions and 1 deletions

View File

@ -2015,7 +2015,7 @@ public abstract class BaseHapiFhirDao<T extends IBaseResource> implements IDao {
/* /*
* The following block of code is used to strip out diacritical marks from latin script * The following block of code is used to strip out diacritical marks from latin script
* and also convert to upper case. E.g. "jåmes" becomes "JAMES". * and also convert to upper case. E.g. "j?mes" becomes "JAMES".
* *
* See http://www.unicode.org/charts/PDF/U0300.pdf for the logic * See http://www.unicode.org/charts/PDF/U0300.pdf for the logic
* behind stripping 0300-036F * behind stripping 0300-036F

View File

@ -1,5 +1,25 @@
package ca.uhn.fhir.jpa.search; package ca.uhn.fhir.jpa.search;
/*-
* #%L
* HAPI FHIR JPA Server
* %%
* Copyright (C) 2014 - 2017 University Health Network
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import org.apache.lucene.analysis.core.LowerCaseFilterFactory; import org.apache.lucene.analysis.core.LowerCaseFilterFactory;
import org.apache.lucene.analysis.core.StopFilterFactory; import org.apache.lucene.analysis.core.StopFilterFactory;
import org.apache.lucene.analysis.core.WhitespaceTokenizerFactory; import org.apache.lucene.analysis.core.WhitespaceTokenizerFactory;