提交 865db80e 编写于 作者: M Mathieu Bastian

Comment out the Dynamic support in Processor.

上级 396a5f86
......@@ -16,10 +16,6 @@
<name>ProcessorPlugin</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>data-attributes-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>dynamic-api</artifactId>
......
......@@ -41,7 +41,6 @@
*/
package org.gephi.io.processor.plugin;
import org.gephi.dynamic.api.DynamicController;
import org.gephi.graph.api.Edge;
import org.gephi.graph.api.Graph;
import org.gephi.graph.api.GraphController;
......@@ -102,10 +101,10 @@ public class AppendProcessor extends AbstractProcessor implements Processor {
flushColumns();
//Dynamic
if (container.getTimeFormat() != null) {
DynamicController dynamicController = Lookup.getDefault().lookup(DynamicController.class);
dynamicController.setTimeFormat(container.getTimeFormat());
}
// if (container.getTimeFormat() != null) {
// DynamicController dynamicController = Lookup.getDefault().lookup(DynamicController.class);
// dynamicController.setTimeFormat(container.getTimeFormat());
// }
int nodeCount = 0;
//Create all nodes
......
......@@ -41,7 +41,6 @@
*/
package org.gephi.io.processor.plugin;
import org.gephi.dynamic.api.DynamicController;
import org.gephi.graph.api.Edge;
import org.gephi.graph.api.Graph;
import org.gephi.graph.api.GraphController;
......@@ -95,12 +94,12 @@ public class DefaultProcessor extends AbstractProcessor implements Processor {
flushColumns();
//Dynamic
if (container.getTimeFormat() != null) {
DynamicController dynamicController = Lookup.getDefault().lookup(DynamicController.class);
if (dynamicController != null) {
dynamicController.setTimeFormat(container.getTimeFormat());
}
}
// if (container.getTimeFormat() != null) {
// DynamicController dynamicController = Lookup.getDefault().lookup(DynamicController.class);
// if (dynamicController != null) {
// dynamicController.setTimeFormat(container.getTimeFormat());
// }
// }
int nodeCount = 0;
//Create all nodes
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册