[
https://issues.apache.org/jira/browse/JCI-56?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Emmanuel Bourg updated JCI-56:
------------------------------
Summary: Incorrect Store read in EclipseJavaCompiler (was: Incore Store
read in EclipseJavaCompiler)
> Incorrect Store read in EclipseJavaCompiler
> -------------------------------------------
>
> Key: JCI-56
> URL: https://issues.apache.org/jira/browse/JCI-56
> Project: Commons JCI
> Issue Type: Bug
> Components: compiler eclipse
> Reporter: Mark Proctor
> Assignee: Torsten Curdt
> Fix For: 1.1
>
>
> A while back the store was changed to store the resource name instead of the
> class name - i.e. {{org.drools.Test}} is now stored as
> {{org/drools/Test.class}}. In EclipseJavaCompiler you are reading via a
> classname, rather than the converted resourceName:
> {code}
> final String resourceName =
> ClassUtils.convertClassToResourcePath(pClazzName);
>
> final byte[] clazzBytes = pStore.read(pClazzName);
> if (clazzBytes != null) {
> {code}
> I believe that should be:
> {code}pStore.read(resourceName);{code}
--
This message was sent by Atlassian JIRA
(v6.1#6144)