I disassembled an Android application with baksmali
, and studied the produced smali code. One of the classes contains the following line:
.local v1, "future":Lcom/android/volley/toolbox/RequestFuture;, "Lcom/android/volley/toolbox/RequestFuture<Ljava/lang/Void;>;"
I'm not sure about the meaning of this line of code.
Does v1
contain a RequestFuture<Void>
, that corresponds to variable future
in original code? (i.e. is the original code: RequestFuture<Void> future;
?) Or is it something different?