Remove unused import & duplicate statement

This commit is contained in:
anonymous 2020-04-19 19:20:25 +02:00
parent bf0d1039ee
commit d0d387502e

View file

@ -11,7 +11,6 @@ import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
import org.json.JSONObject;
import com.android.vending.billing.IInAppBillingService;
@ -67,7 +66,6 @@ public class BillingService extends Service {
System.out.println(i);
String item = items.get(i);
productDetails.add("{ \"productId\" : \"" + item + "\", \"type\" : \"inapp\", \"price\" : \"$5.00\", \"title\" : \"" + item + "\", \"description\" : \"This is an example description\" }");
productDetails.add("{ \"productId\" : \"" + item + "\", \"type\" : \"inapp\", \"price\" : \"$5.00\", \"title\" : \"" + item + "\", \"description\" : \"This is an example description\" }");
}
Log.d(TAG, productDetails.toString());