This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug java/11478] New: fields marked 'transient' are being written out
- From: "daj2 at cs dot wustl dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Jul 2003 15:21:33 -0000
- Subject: [Bug java/11478] New: fields marked 'transient' are being written out
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11478
Summary: fields marked 'transient' are being written out
Product: gcc
Version: 3.3
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: java
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: daj2 at cs dot wustl dot edu
CC: gcc-bugs at gcc dot gnu dot org
Upon serialization, fields marked transient are attempting to be serialized which causes
additional problems with non-Serializable fields that have been marked transient. We have
tested this with two different files and attached a simple test file to write out an object with one
transient field that does not implement Serializable. This case fails.