[
https://issues.apache.org/jira/browse/LANG-1488?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gary D. Gregory resolved LANG-1488.
-----------------------------------
Fix Version/s: (was: 4.0)
Resolution: Not A Bug
> Possible serialization failed
> -----------------------------
>
> Key: LANG-1488
> URL: https://issues.apache.org/jira/browse/LANG-1488
> Project: Commons Lang
> Issue Type: Bug
> Components: lang.tuple.*
> Reporter: Tai Dupree
> Priority: Major
>
> *Pair* fails to properly constrain the generic parameters, requiring them to
> implement the *Serializable* interface, which may cause serialization to fail.
> Example:
> {code:java}
> static class A { }
> @Test
> public void testSerialization() throws Exception {
> final ImmutablePair<A, String> origPair = ImmutablePair.of(new A(),
> "foo");
> final ByteArrayOutputStream baos = new ByteArrayOutputStream();
> final ObjectOutputStream out = new ObjectOutputStream(baos);
> out.writeObject(origPair);
> out.close();
> baos.close();
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)