Ignore:
Timestamp:
2019-11-15T23:14:48+13:00 (4 years ago)
Author:
ak19
Message:

Links to more reading

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/maori-lang-detection/src/org/greenstone/atea/morphia/LanguageInfo.java

    r33674 r33698  
    55@Entity("Languages")
    66public class LanguageInfo {
    7     public final double confidenceLevel;
     7    public final double confidence;
    88    /** 3 letter lang code */
    99    public final String langCode;
    1010    public LanguageInfo(double confidence, String langCode) {
    11         this.confidenceLevel = confidence;
     11        this.confidence = confidence;
    1212        this.langCode = langCode;       
    1313    }
Note: See TracChangeset for help on using the changeset viewer.