[jboss-cvs] jboss-seam/src/ui/org/jboss/seam/ui ...
Peter Muir
peter at bleepbleep.org.uk
Thu Mar 15 21:11:00 EDT 2007
User: pmuir
Date: 07/03/15 21:11:00
Modified: src/ui/org/jboss/seam/ui EntityConverterStore.java
Log:
JBSEAM-1057
Revision Changes Path
1.4 +2 -0 jboss-seam/src/ui/org/jboss/seam/ui/EntityConverterStore.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: EntityConverterStore.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/EntityConverterStore.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- EntityConverterStore.java 12 Mar 2007 06:11:19 -0000 1.3
+++ EntityConverterStore.java 16 Mar 2007 01:11:00 -0000 1.4
@@ -11,6 +11,7 @@
import org.jboss.seam.annotations.Scope;
import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.core.AbstractMutable;
+import org.jboss.seam.util.Proxy;
@Name("org.jboss.seam.ui.entityConverterStore")
@Scope(ScopeType.SESSION)
@@ -73,6 +74,7 @@
public Integer put(Class clazz, Object id)
{
+ clazz = Proxy.deproxy(clazz);
Key key = new Key(clazz, id);
if (!store.contains(key))
{
More information about the jboss-cvs-commits
mailing list