public static String getFirstLangScore(CRSDatabase db) {
String firstLanguageScore = "";
if (mGlobals.getSelectLanguage().equals("ENGLISH")) {
String[] lowestEnglishReading = mGlobals.getEnglishReadingScore().split("CLB ");
firstLanguageScore = //did some calculation and updated the value
}
else if(mGlobals.getSelectLanguage().equals("FRENCH")){
String[] lowestFrenchReading = mGlobals.getFrenchReadingScore().split("CLB ");
firstLanguageScore = // did some calculation and updated the value
}
return firstLanguageScore; // here it is returning the initial initialized value.
}
public static String getFirstLangScore(CRSDatab