Remove debugging.

This commit is contained in:
Braden Shepherdson 2013-01-15 13:24:59 -05:00
parent ff1d943a69
commit 547b683e61

View File

@ -22,13 +22,10 @@ import org.json.JSONArray;
import org.json.JSONException;
import android.util.Base64;
import android.util.Log;
public class CordovaArguments {
public static byte[] getArrayBuffer(JSONArray args, int index) throws JSONException {
Log.i("Braden", "getting array buffer at index " + index);
String encoded = args.getString(index);
Log.i("Braden", encoded);
return Base64.decode(encoded, Base64.DEFAULT);
}
}