luetzkendorf    2005/04/04 06:55:13

  Modified:    src/stores/org/apache/slide/index/lucene
                        LuceneContentIndexer.java
  Log:
  misspelled member renamed
  
  Revision  Changes    Path
  1.3       +24 -21    
jakarta-slide/src/stores/org/apache/slide/index/lucene/LuceneContentIndexer.java
  
  Index: LuceneContentIndexer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/stores/org/apache/slide/index/lucene/LuceneContentIndexer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LuceneContentIndexer.java 29 Mar 2005 08:08:00 -0000      1.2
  +++ LuceneContentIndexer.java 4 Apr 2005 13:55:13 -0000       1.3
  @@ -1,22 +1,25 @@
   /*
  -*
  -* ====================================================================
  -*
  -* Copyright 2004 The Apache Software Foundation
  -*
  -* 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.
  -*
  -*/
  + * $Header$
  + * $Revision$
  + * $Date$
  + *
  + * ====================================================================
  + *
  + * Copyright 1999-2004 The Apache Software Foundation
  + *
  + * 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.
  + *
  + */
   package org.apache.slide.index.lucene;
   
   import java.io.ByteArrayInputStream;
  @@ -48,7 +51,7 @@
   public class LuceneContentIndexer extends AbstractLuceneIndexer
   {
       private static final String ANALYZER_PARAM = "analyzer";
  -    private String analyserClassName;
  +    private String analyzerClassName;
       
       public void initialize(NamespaceAccessToken token)
               throws ServiceInitializationFailedException
  @@ -58,7 +61,7 @@
               indexConfiguration.initDefaultConfiguration();
               
               indexConfiguration.setContentAnalyzer(
  -                    createAnalyzer(this.analyserClassName));
  +                    createAnalyzer(this.analyzerClassName));
               
               this.index = new Index(indexConfiguration, getLogger(), 
                       "content " + this.scope);
  @@ -82,7 +85,7 @@
                  ServiceParameterMissingException
       {
           super.setParameters(parameters);
  -        analyserClassName = (String)parameters.get(ANALYZER_PARAM);
  +        analyzerClassName = (String)parameters.get(ANALYZER_PARAM);
       }
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to