final Set<String> set = iniConfig.keySet();
List<Group> newGroupList = new LinkedList<Group>();
for (final String name : set) {
if (name != null && name.startsWith("group=")) {
final Section section = iniConfig.get(name);
Group group = new Group();
group.setGroup(name.substring("group=".length()));
group.setMobileList(Arrays.asList(section.get("mobile").split(",")));
group.setTopicList(Arrays.asList(section.get("topic").split(",")));
group.setWwList(Arrays.asList(section.get("ww").split(",")));
if(!StringUtils.isBlank(section.get("ignoreTopic"))){
group.setIgnoreTopicList(Arrays.asList(section.get("ignoreTopic").split(",")));
}
newGroupList.add(group);
}
}
if(!this.groupList.equals(newGroupList)){