buildframework/helium/sf/java/core/src/com/nokia/helium/core/TemplateProcessor.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/java/core/src/com/nokia/helium/core/TemplateProcessor.java	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/java/core/src/com/nokia/helium/core/TemplateProcessor.java	Fri Aug 13 14:59:05 2010 +0300
@@ -17,16 +17,17 @@
 
 package com.nokia.helium.core;
 
-import freemarker.template.Template;
-import freemarker.template.Configuration;
-
+import java.io.File;
 import java.io.FileWriter;
-import java.io.File;
+import java.util.HashMap;
 import java.util.List;
-import java.util.HashMap;
 import java.util.Map;
+
 import org.apache.log4j.Logger;
 
+import freemarker.template.Configuration;
+import freemarker.template.Template;
+
 /**
  * Template processor.
  * 
@@ -61,10 +62,6 @@
                     PropertiesSource propSource = (PropertiesSource) source;
                     templateMap.put(propSource.getSourceName(), propSource
                             .getProperties());
-                } else if (source instanceof PPInputSource) {
-                    PPInputSource ppSource = (PPInputSource) source;
-                    templateMap.put(ppSource.getSourceName(), ppSource
-                            .getPPHash());
                 }
             }
         } catch (java.io.IOException e) {