public void setNeighbors(List<NeighboringCellInfo> inNeighbors) {
// We NEVER allow the neighbors member to be set null.
// Otherwise, tests might be mis-reported as failing.
// If we're supplied a null value, set to use an empty list.
if (inNeighbors == null) {
// ... we should trap this where possible in the debugger...
SKPorting.sAssert(getClass(), false);
neighbors = new ArrayList<>();
} else {
neighbors = inNeighbors;
}
}
CellTowersData.java 文件源码
java
阅读 20
收藏 0
点赞 0
评论 0
项目:skandroid-core
作者:
评论列表
文章目录