[jboss-svn-commits] JBL Code SVN: r15181 - labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/debug.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Sep 17 19:48:46 EDT 2007


Author: KrisVerlaenen
Date: 2007-09-17 19:48:46 -0400 (Mon, 17 Sep 2007)
New Revision: 15181

Modified:
   labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/debug/AuditView.java
Log:
Updates to fix ordering problem in audit view

Modified: labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/debug/AuditView.java
===================================================================
--- labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/debug/AuditView.java	2007-09-17 23:48:42 UTC (rev 15180)
+++ labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/debug/AuditView.java	2007-09-17 23:48:46 UTC (rev 15181)
@@ -194,8 +194,6 @@
 				case LogEvent.RULEFLOW_GROUP_ACTIVATED:
 					RuleFlowGroupLogEvent inRuleFlowGroupEvent = (RuleFlowGroupLogEvent) inEvent;
 					event.setString("RuleFlowGroup activated: " + inRuleFlowGroupEvent.getGroupName() + "[size=" + inRuleFlowGroupEvent.getSize() + "]");
-					event.addSubEvents(newActivations);
-					newActivations.clear();
 					if (currentBeforeActivationEvent != null) {
 						currentBeforeActivationEvent.addSubEvent(event);
 					} else {
@@ -205,8 +203,6 @@
 				case LogEvent.RULEFLOW_GROUP_DEACTIVATED:
 					inRuleFlowGroupEvent = (RuleFlowGroupLogEvent) inEvent;
 					event.setString("RuleFlowGroup deactivated: " + inRuleFlowGroupEvent.getGroupName() + "[size=" + inRuleFlowGroupEvent.getSize() + "]");
-					event.addSubEvents(newActivations);
-					newActivations.clear();
 					if (currentBeforeActivationEvent != null) {
 						currentBeforeActivationEvent.addSubEvent(event);
 					} else {




More information about the jboss-svn-commits mailing list