Author: varun-guest
Date: 2007-11-16 22:03:43 +0000 (Fri, 16 Nov 2007)
New Revision: 4771

Modified:
   trunk/libfreemarker-java/debian/patches/class_name.diff
Log:
* Update patch


Modified: trunk/libfreemarker-java/debian/patches/class_name.diff
===================================================================
--- trunk/libfreemarker-java/debian/patches/class_name.diff     2007-11-16 
13:54:30 UTC (rev 4770)
+++ trunk/libfreemarker-java/debian/patches/class_name.diff     2007-11-16 
22:03:43 UTC (rev 4771)
@@ -1,13 +1,13 @@
 Index: libfreemarker-java-2.3.10/src/freemarker/ext/jython/JythonHashModel.java
 ===================================================================
---- 
libfreemarker-java-2.3.10.orig/src/freemarker/ext/jython/JythonHashModel.java   
   2007-11-16 19:31:50.000000000 +0530
-+++ libfreemarker-java-2.3.10/src/freemarker/ext/jython/JythonHashModel.java   
2007-11-16 19:32:13.000000000 +0530
+--- 
libfreemarker-java-2.3.10.orig/src/freemarker/ext/jython/JythonHashModel.java   
   2007-04-20 18:36:15.000000000 +0530
++++ libfreemarker-java-2.3.10/src/freemarker/ext/jython/JythonHashModel.java   
2007-11-17 01:35:21.000000000 +0530
 @@ -137,7 +137,7 @@
          {
              throw new TemplateModelException(e);
          }
 -        throw new TemplateModelException("'?keys' is not supported as there 
is no 'keys' nor 'keySet' attribute on an instance of " + 
object.__class__.__name__);
-+        throw new TemplateModelException("'?keys' is not supported as there 
is no 'keys' nor 'keySet' attribute on an instance of " + object.exposed_name);
++        throw new TemplateModelException("'?keys' is not supported as there 
is no 'keys' nor 'keySet' attribute on an instance of " + 
object.getType().getFullName());
      }
  
      /**
@@ -16,6 +16,6 @@
              throw new TemplateModelException(e);
          }
 -        throw new TemplateModelException("'?values' is not supported as there 
is no 'values' attribute on an instance of " + object.__class__.__name__);
-+        throw new TemplateModelException("'?values' is not supported as there 
is no 'values' attribute on an instance of " + object.exposed_name);
++        throw new TemplateModelException("'?values' is not supported as there 
is no 'values' attribute on an instance of " + object.getType().getFullName());
      }
  }


_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

Reply via email to