[jira] [Updated] (COLLECTIONS-363) TransformedMap is Serializable but its superclass doesn't define an accessible void constructor

2012-07-15 Thread Thomas Neidhart (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Neidhart updated COLLECTIONS-363:


Fix Version/s: 4.0

> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor
> ---
>
> Key: COLLECTIONS-363
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-363
> Project: Commons Collections
>  Issue Type: Bug
>  Components: Map
>Affects Versions: 3.2
>Reporter: Sebb
> Fix For: 4.0
>
> Attachments: COLLECTIONS-363-obj-test-fix.patch, 
> COLLECTIONS-363.patch, TransformedMap.emptyCollection.version3.2.obj, 
> TransformedMap.fullCollection.version3.2.obj
>
>
> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor.
> For example, the following test fails:
> {code}
> public void testSerialisation() throws Exception {
> TransformedMap map = 
> TransformedMap.decorate(
> new HashMap(),  NOPTransformer. 
> getInstance(), NOPTransformer. getInstance());
> ByteArrayOutputStream bytes = new ByteArrayOutputStream();
> ObjectOutputStream out = new ObjectOutputStream(bytes);
> out.writeObject(map); // fails with java.io.InvalidClassException: 
> org.apache.commons.collections.splitmap.TransformedMap; no valid constructor
> out.close();
> }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (COLLECTIONS-363) TransformedMap is Serializable but its superclass doesn't define an accessible void constructor

2010-12-20 Thread Igor Saprykin (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Saprykin updated COLLECTIONS-363:
--

Attachment: (was: COLLECTIONS-363-obj-test.patch)

> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor
> ---
>
> Key: COLLECTIONS-363
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-363
> Project: Commons Collections
>  Issue Type: Bug
>  Components: Map
>Affects Versions: 3.2
>Reporter: Sebb
> Attachments: COLLECTIONS-363-obj-test-fix.patch, 
> COLLECTIONS-363.patch, TransformedMap.emptyCollection.version3.2.obj, 
> TransformedMap.fullCollection.version3.2.obj
>
>
> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor.
> For example, the following test fails:
> {code}
> public void testSerialisation() throws Exception {
> TransformedMap map = 
> TransformedMap.decorate(
> new HashMap(),  NOPTransformer. 
> getInstance(), NOPTransformer. getInstance());
> ByteArrayOutputStream bytes = new ByteArrayOutputStream();
> ObjectOutputStream out = new ObjectOutputStream(bytes);
> out.writeObject(map); // fails with java.io.InvalidClassException: 
> org.apache.commons.collections.splitmap.TransformedMap; no valid constructor
> out.close();
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (COLLECTIONS-363) TransformedMap is Serializable but its superclass doesn't define an accessible void constructor

2010-12-20 Thread Igor Saprykin (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Saprykin updated COLLECTIONS-363:
--

Attachment: TransformedMap.fullCollection.version3.2.obj
TransformedMap.emptyCollection.version3.2.obj

> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor
> ---
>
> Key: COLLECTIONS-363
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-363
> Project: Commons Collections
>  Issue Type: Bug
>  Components: Map
>Affects Versions: 3.2
>Reporter: Sebb
> Attachments: COLLECTIONS-363-obj-test-fix.patch, 
> COLLECTIONS-363.patch, TransformedMap.emptyCollection.version3.2.obj, 
> TransformedMap.fullCollection.version3.2.obj
>
>
> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor.
> For example, the following test fails:
> {code}
> public void testSerialisation() throws Exception {
> TransformedMap map = 
> TransformedMap.decorate(
> new HashMap(),  NOPTransformer. 
> getInstance(), NOPTransformer. getInstance());
> ByteArrayOutputStream bytes = new ByteArrayOutputStream();
> ObjectOutputStream out = new ObjectOutputStream(bytes);
> out.writeObject(map); // fails with java.io.InvalidClassException: 
> org.apache.commons.collections.splitmap.TransformedMap; no valid constructor
> out.close();
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (COLLECTIONS-363) TransformedMap is Serializable but its superclass doesn't define an accessible void constructor

2010-12-20 Thread Igor Saprykin (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Saprykin updated COLLECTIONS-363:
--

Attachment: COLLECTIONS-363-obj-test-fix.patch

> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor
> ---
>
> Key: COLLECTIONS-363
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-363
> Project: Commons Collections
>  Issue Type: Bug
>  Components: Map
>Affects Versions: 3.2
>Reporter: Sebb
> Attachments: COLLECTIONS-363-obj-test-fix.patch, 
> COLLECTIONS-363-obj-test.patch, COLLECTIONS-363.patch
>
>
> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor.
> For example, the following test fails:
> {code}
> public void testSerialisation() throws Exception {
> TransformedMap map = 
> TransformedMap.decorate(
> new HashMap(),  NOPTransformer. 
> getInstance(), NOPTransformer. getInstance());
> ByteArrayOutputStream bytes = new ByteArrayOutputStream();
> ObjectOutputStream out = new ObjectOutputStream(bytes);
> out.writeObject(map); // fails with java.io.InvalidClassException: 
> org.apache.commons.collections.splitmap.TransformedMap; no valid constructor
> out.close();
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (COLLECTIONS-363) TransformedMap is Serializable but its superclass doesn't define an accessible void constructor

2010-12-20 Thread Igor Saprykin (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Saprykin updated COLLECTIONS-363:
--

Attachment: COLLECTIONS-363-obj-test.patch

Patch with .obj file and test case

> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor
> ---
>
> Key: COLLECTIONS-363
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-363
> Project: Commons Collections
>  Issue Type: Bug
>  Components: Map
>Affects Versions: 3.2
>Reporter: Sebb
> Attachments: COLLECTIONS-363-obj-test.patch, COLLECTIONS-363.patch
>
>
> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor.
> For example, the following test fails:
> {code}
> public void testSerialisation() throws Exception {
> TransformedMap map = 
> TransformedMap.decorate(
> new HashMap(),  NOPTransformer. 
> getInstance(), NOPTransformer. getInstance());
> ByteArrayOutputStream bytes = new ByteArrayOutputStream();
> ObjectOutputStream out = new ObjectOutputStream(bytes);
> out.writeObject(map); // fails with java.io.InvalidClassException: 
> org.apache.commons.collections.splitmap.TransformedMap; no valid constructor
> out.close();
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (COLLECTIONS-363) TransformedMap is Serializable but its superclass doesn't define an accessible void constructor

2010-12-12 Thread Igor Saprykin (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Saprykin updated COLLECTIONS-363:
--

Attachment: COLLECTIONS-363.patch

> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor
> ---
>
> Key: COLLECTIONS-363
> URL: https://issues.apache.org/jira/browse/COLLECTIONS-363
> Project: Commons Collections
>  Issue Type: Bug
>  Components: Map
>Affects Versions: 3.2
>Reporter: Sebb
> Attachments: COLLECTIONS-363.patch
>
>
> TransformedMap is Serializable but its superclass doesn't define an 
> accessible void constructor.
> For example, the following test fails:
> {code}
> public void testSerialisation() throws Exception {
> TransformedMap map = 
> TransformedMap.decorate(
> new HashMap(),  NOPTransformer. 
> getInstance(), NOPTransformer. getInstance());
> ByteArrayOutputStream bytes = new ByteArrayOutputStream();
> ObjectOutputStream out = new ObjectOutputStream(bytes);
> out.writeObject(map); // fails with java.io.InvalidClassException: 
> org.apache.commons.collections.splitmap.TransformedMap; no valid constructor
> out.close();
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.