You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Carsten Ziegeler (JIRA)" <ji...@apache.org> on 2015/04/23 15:32:38 UTC

[jira] [Closed] (FELIX-2359) Property annotation has issues with comment directly above

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

Carsten Ziegeler closed FELIX-2359.
-----------------------------------

> Property annotation has issues with comment directly above
> ----------------------------------------------------------
>
>                 Key: FELIX-2359
>                 URL: https://issues.apache.org/jira/browse/FELIX-2359
>             Project: Felix
>          Issue Type: Bug
>          Components: SCR Tooling
>    Affects Versions: scr annotations 1.2.0
>         Environment: OSX, jdk16 64bit 
>            Reporter: Douglas Britsch
>            Assignee: Carsten Ziegeler
>            Priority: Minor
>             Fix For:  maven-scr-plugin-1.6.0
>
>
> When annotating a member as an OSGi property i get an invalid key generated when I put a // comment above.
> For instance:
> public class InstrumentServiceImpl implements InstrumentServiceInterface {
>     private static final Logger logger = Logger.getLogger(Instrument.class.getName());
>     
>     // OSGi Configurable Properties
>     @Property(name="logPathFormat", value="./log/instrumentation"
> will generate a key that looks like it is concatenating the comment into the key name for some reason.  "OSGi Configurable Properties
> logPathFormat"
> as a work around if I change it to:
> public class InstrumentServiceImpl implements InstrumentServiceInterface {
>     private static final Logger logger = Logger.getLogger(Instrument.class.getName());
>     
>     /** OSGi Configurable Properties */
>     @Property(name="logPathFormat", value="./log/instrumentation"
> it works fine 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)