[
https://issues.apache.org/jira/browse/OPENJPA-2800?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17326418#comment-17326418
]
ASF subversion and git services commented on OPENJPA-2800:
----------------------------------------------------------
Commit a850031d11aa7fd18e6828c9cce4fa6b2809ffdd in openjpa's branch
refs/heads/master from Francesco Chicchiriccò
[ https://gitbox.apache.org/repos/asf?p=openjpa.git;h=a850031 ]
Revert "OPENJPA-2800 mark additional fields and methods as synthetic"
This reverts commit 5b67ce51801cb646d772dadd03a623312603a0df.
> StateManager field in enhanced entities are not "synthetic"
> -----------------------------------------------------------
>
> Key: OPENJPA-2800
> URL: https://issues.apache.org/jira/browse/OPENJPA-2800
> Project: OpenJPA
> Issue Type: Bug
> Components: Enhance
> Affects Versions: 2.4.3
> Reporter: Alexander Falb
> Assignee: Mark Struberg
> Priority: Minor
> Fix For: 3.1.3
>
> Attachments: image-2020-01-15-08-12-02-066.png
>
>
> I'm using reflection to do various things on an entity-class during my unit
> tests. Because my tests are not interested in any of OpenJPAs internals, I'm
> trying to skip any field generated during enhancement. Basically I skip every
> field with where
> [Field#isSynthetic|https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#isSynthetic--]]
> is true. The pcStateManager however does not have the flag ACC_SYNTHETIC set:
> {code:java}
> $ javap -verbose MyEntity.class
> [...]
> protected transient org.apache.openjpa.enhance.StateManager pcStateManager;
> descriptor: Lorg/apache/openjpa/enhance/StateManager;
> flags: ACC_PROTECTED, ACC_TRANSIENT
> [...]
> {code}
> According to the [JVM
> Specs|https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.7.8]
> {quote}[...]A class member that does not appear in the source code must be
> marked using a Synthetic attribute, or else it must have its ACC_SYNTHETIC
> flag set.[...]
> {quote}
> Is this flag intentionally not set?
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)