fixed bug with straying "new" in FreqDomain Transformer

Change-Id: I6f99d67c1077fd89b4377b868c5e70bcb5a85f5e
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend
index 1ccfe9a..8281b6c 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend
@@ -56,7 +56,7 @@
 		#include "«getModulePath(frequencyDomain)».h"
 		
 		sc_core::sc_time «getCall(frequencyDomain)» {
-			return new sc_core::sc_time(«getPeriodInPS(frequencyDomain.defaultValue)», sc_core::SC_PS);
+			return sc_core::sc_time(«getPeriodInPS(frequencyDomain.defaultValue)», sc_core::SC_PS);
 		}
 	'''