Removed unused log
This commit is contained in:
parent
a3aa9956e3
commit
66b0ce7cc1
1 changed files with 0 additions and 1 deletions
|
@ -366,7 +366,6 @@ public class NetworkService extends Service {
|
||||||
parsedResponse = gson.fromJson(text, GetAccountByNameResponse);
|
parsedResponse = gson.fromJson(text, GetAccountByNameResponse);
|
||||||
} else if(responsePayloadClass == HistoryOperationDetail.class){
|
} else if(responsePayloadClass == HistoryOperationDetail.class){
|
||||||
Type GetAccountHistoryByOperationsResponse = new TypeToken<JsonRpcResponse<HistoryOperationDetail>>(){}.getType();
|
Type GetAccountHistoryByOperationsResponse = new TypeToken<JsonRpcResponse<HistoryOperationDetail>>(){}.getType();
|
||||||
Log.d(TAG,"*> "+text);
|
|
||||||
parsedResponse = gson.fromJson(text, GetAccountHistoryByOperationsResponse);
|
parsedResponse = gson.fromJson(text, GetAccountHistoryByOperationsResponse);
|
||||||
}else if(responsePayloadClass == List.class){
|
}else if(responsePayloadClass == List.class){
|
||||||
// If the response payload is a List, further inquiry is required in order to
|
// If the response payload is a List, further inquiry is required in order to
|
||||||
|
|
Loading…
Reference in a new issue