Author: doogie
Date: Fri Dec 10 07:20:35 2010
New Revision: 1044228

URL: http://svn.apache.org/viewvc?rev=1044228&view=rev
Log:
Fix some spacing issues, no code changes.

Modified:
    
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/FreeMarkerWorker.java

Modified: 
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/FreeMarkerWorker.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/FreeMarkerWorker.java?rev=1044228&r1=1044227&r2=1044228&view=diff
==============================================================================
--- 
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/FreeMarkerWorker.java
 (original)
+++ 
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/FreeMarkerWorker.java
 Fri Dec 10 07:20:35 2010
@@ -157,8 +157,7 @@ public class FreeMarkerWorker {
     public static void renderTemplate(String templateLocation, String 
templateString, Map<String, Object> context, Appendable outWriter) throws 
TemplateException, IOException {
         renderTemplate(templateLocation, templateString, context, outWriter, 
true);
     }
-    
-    
+
     /**
      * Renders a template contained in a String.
      * @param templateLocation A unique ID for this template - used for caching
@@ -189,7 +188,7 @@ public class FreeMarkerWorker {
 
     /**
      * @deprecated, replaced by {...@link #renderTemplateFromString(String 
templateString, String templateLocation, Map<String, Object> context, 
Appendable outWriter, boolean useCache)}
-     */    
+     */
     @Deprecated
     public static Environment renderTemplateFromString(String templateString, 
String templateLocation, Map<String, Object> context, Appendable outWriter) 
throws TemplateException, IOException {
         Template template = cachedTemplates.get(templateLocation);
@@ -382,7 +381,6 @@ public class FreeMarkerWorker {
         return returnVal;
     }
 
-
    /**
     * Gets BeanModel from FreeMarker context and returns the object that it 
wraps.
     * @param varName the name of the variable in the FreeMarker context.
@@ -686,7 +684,6 @@ public class FreeMarkerWorker {
     /**
      * OFBiz specific TemplateExceptionHandler.  Sanitizes any error messages 
present in
      * the stack trace prior to printing to the output writer.
-     *
      */
     static class OFBizTemplateExceptionHandler implements 
TemplateExceptionHandler {
         public void handleTemplateException(TemplateException te, Environment 
env, Writer out) throws TemplateException {


Reply via email to