mirror of https://github.com/apache/lucene.git
fix javadocs broken links: public methods taking pkg-private arguments are effectively pkg-private
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/solr3733@1388148 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
be1dcd3b84
commit
1eda7edf6a
|
@ -40,7 +40,7 @@ public class SolrUIMAConfiguration {
|
|||
|
||||
private String logField;
|
||||
|
||||
public SolrUIMAConfiguration(String aePath, String[] fieldsToAnalyze, boolean fieldsMerging,
|
||||
SolrUIMAConfiguration(String aePath, String[] fieldsToAnalyze, boolean fieldsMerging,
|
||||
Map<String, Map<String, MapField>> typesFeaturesFieldsMapping,
|
||||
Map<String, Object> runtimeParameters, boolean ignoreErrors, String logField) {
|
||||
this.aePath = aePath;
|
||||
|
@ -60,7 +60,7 @@ public class SolrUIMAConfiguration {
|
|||
return fieldsMerging;
|
||||
}
|
||||
|
||||
public Map<String, Map<String, MapField>> getTypesFeaturesFieldsMapping() {
|
||||
Map<String, Map<String, MapField>> getTypesFeaturesFieldsMapping() {
|
||||
return typesFeaturesFieldsMapping;
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ public class UIMAToSolrMapper {
|
|||
* @param typeName name of UIMA type to map
|
||||
* @param featureFieldsmapping
|
||||
*/
|
||||
public void map(String typeName, Map<String, MapField> featureFieldsmapping) throws FieldMappingException {
|
||||
void map(String typeName, Map<String, MapField> featureFieldsmapping) throws FieldMappingException {
|
||||
try {
|
||||
Type type = cas.getTypeSystem().getType(typeName);
|
||||
for (FSIterator<FeatureStructure> iterator = cas.getFSIndexRepository().getAllIndexedFS(type); iterator
|
||||
|
|
Loading…
Reference in New Issue