Commit a354cd10 by s_guodong

copyValue的bug

parent 46626482
...@@ -187,7 +187,9 @@ public class MdaDriver { ...@@ -187,7 +187,9 @@ public class MdaDriver {
} }
} }
obj1.clear(); obj1.clear();
obj1.addAll(obj2); if (obj2 != null) {
obj1.addAll(obj2);
}
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment