mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
- Add more info to detect errors.
This commit is contained in:
parent
56ac4aaed3
commit
acd149bfc9
@ -242,9 +242,12 @@ mindplot.CommandContext = new Class({
|
|||||||
}
|
}
|
||||||
|
|
||||||
var designerTopics = this._designer.getModel().getTopics();
|
var designerTopics = this._designer.getModel().getTopics();
|
||||||
return designerTopics.filter(function (topic) {
|
var result = designerTopics.filter(function (topic) {
|
||||||
return topicsIds.contains(topic.getId());
|
return topicsIds.contains(topic.getId());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$assert(result.length == topicsIds.length, "Could not find topic. Result:" + result + ", Filtered:" + topicsIds + ", Current Topics: " + designerTopics);
|
||||||
|
return result;
|
||||||
},
|
},
|
||||||
|
|
||||||
deleteTopic:function (topic) {
|
deleteTopic:function (topic) {
|
||||||
|
@ -341,7 +341,7 @@ public class FreemindImporter
|
|||||||
* 3 -> 2
|
* 3 -> 2
|
||||||
* 4 -> 4
|
* 4 -> 4
|
||||||
*/
|
*/
|
||||||
private int calcFirstLevelOrder(@NotNull List<Object> freeChilden, @NotNull Node freeChild) {
|
private int calcFirstLevelOrder(@NotNull List<Object> freeChilden, @Nullable Node freeChild) {
|
||||||
final List<Node> nodes = new ArrayList<Node>();
|
final List<Node> nodes = new ArrayList<Node>();
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user