修复一个 MTA 的统计多个参数时出现的 BUG
This commit is contained in:
@ -117,7 +117,7 @@ public class DataUtils {
|
||||
// }
|
||||
Properties prop = new Properties();
|
||||
for (int i = 0; i < kv.length; i++) {
|
||||
if (i % 2 != 0 || i != 0) {
|
||||
if (i % 2 != 0 && i != 0) {
|
||||
String key = kv[i - 1];
|
||||
String value = kv[i];
|
||||
if (!TextUtils.isEmpty(key) && !TextUtils.isEmpty(value)) {
|
||||
|
||||
Reference in New Issue
Block a user