Working on Android app in the Android Studio
But there is a pop-up window on replaceAll that says: "Result of this will be ignored"
String priceString = mPriceEditText.getText().toString().trim();
if(priceString.contains(",")){
priceString.replaceAll(",",".");
}
How could I fix this code?