Skip to content

Commit

Permalink
HSEARCH-1412 Using tabs for indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarmorling committed Sep 17, 2013
1 parent 015e391 commit 22f4cf2
Showing 1 changed file with 8 additions and 9 deletions.
Expand Up @@ -25,7 +25,6 @@
import java.util.Map;

import org.apache.solr.analysis.TokenizerFactory;

import org.hibernate.search.annotations.Analyze;
import org.hibernate.search.annotations.Index;
import org.hibernate.search.annotations.Norms;
Expand Down Expand Up @@ -65,15 +64,15 @@ public IndexedClassBridgeMapping index(Index index) {
return this;
}

public IndexedClassBridgeMapping analyze(Analyze analyze) {
this.classBridge.put( "analyze", analyze );
return this;
}
public IndexedClassBridgeMapping analyze(Analyze analyze) {
this.classBridge.put( "analyze", analyze );
return this;
}

public IndexedClassBridgeMapping norms(Norms norms) {
this.classBridge.put( "norms", norms );
return this;
}
public IndexedClassBridgeMapping norms(Norms norms) {
this.classBridge.put( "norms", norms );
return this;
}

public IndexedClassBridgeMapping termVector(TermVector termVector) {
this.classBridge.put( "termVector", termVector );
Expand Down

0 comments on commit 22f4cf2

Please sign in to comment.