- Fix IE 9 issue that true value is serialized as number instead of boolean string.

This commit is contained in:
Paulo Gustavo Veiga
2012-09-11 20:45:58 -03:00
parent 1e53ba827f
commit 2e2e978c43
4 changed files with 60 additions and 5 deletions

View File

@@ -72,7 +72,7 @@ public class FreemindExporter
TopicType centerTopic = null;
if (topics.size() > 1) {
for (TopicType topic : topics) {
if (topic.isCentral()) {
if (topic.isCentral() != null && topic.isCentral()) {
centerTopic = topic;
break;
}