Reformat with 2-space indents
[yaz4j-moved-to-github.git] / src / main / java / org / yaz4j / ScanTerm.java
index 3fbcf47..6c41822 100644 (file)
@@ -2,19 +2,19 @@ package org.yaz4j;
 
 public class ScanTerm {
 
-    private String term;
-    private long occurences;
+  private String term;
+  private long occurences;
 
-    ScanTerm(String term, long occurences) {
-        this.term = term;
-        this.occurences = occurences;
-    }
+  ScanTerm(String term, long occurences) {
+    this.term = term;
+    this.occurences = occurences;
+  }
 
-    public String getTerm() {
-        return term;
-    }
+  public String getTerm() {
+    return term;
+  }
 
-    public long getOccurences() {
-        return occurences;
-    }
+  public long getOccurences() {
+    return occurences;
+  }
 }