fix leaking data to logcat

This commit is contained in:
Philipp Crocoll
2018-05-07 10:42:58 +02:00
parent c39d0048a8
commit 77593969b2

View File

@@ -54,7 +54,6 @@ public abstract class PluginActionBroadcastReceiver extends BroadcastReceiver {
for(Iterator<String> iter = json.keys();iter.hasNext();) {
String key = iter.next();
String value = json.get(key).toString();
Log.d("KP2APluginSDK", "received " + key+"/"+value);
res.put(key, value);
}