unused variable

  1. R

    Android Question IDE warning unused variable

    Have code that alters a variable and saves it to KVS: Sub UpdateSettingAndKVS(strVarKey As String, oVar As Object, oVal As Object) oVar = oVal cMP.UpdateKVS(strVarKey, oVal) End Sub This will give the warning: Unused variable 'ovar'. (warning #9) Object Clearly the...
Top