Audit Trail error

0
type parameters of <t>T cannot be determined; no unique maximal instance exists for type variable T with upper bounds boolean,java.lang.Object test = ObjectList.get(0).getValue(this.context, "Use");
asked
1 answers
0

the following cast will probably solve the issue

java.lang.Object test = (Object) ObjectList.get(0).getValue(this.context, "Use");

answered