[
https://issues.apache.org/jira/browse/FELIX-4347?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13842131#comment-13842131
]
Clement Escoffier commented on FELIX-4347:
------------------------------------------
Oh, sorry, misread the code.
I've added a test with:
{code}
private static final Callable<Integer> callable = new Callable<Integer>() {
public Integer call() {
return 1;
}
};
{code}
If I look inside the manipulated bundle, I've:
{code}
private static final Callable<Integer> callable = new Callable() {
public Integer call() {
return Integer.valueOf(1);
}
};
{code}
Which version of the plugin are you using ?
> manipulator should ignore static inner classes
> ----------------------------------------------
>
> Key: FELIX-4347
> URL: https://issues.apache.org/jira/browse/FELIX-4347
> Project: Felix
> Issue Type: Bug
> Components: iPOJO
> Affects Versions: ipojo-manipulator-1.11.0
> Reporter: Daan de Wit
> Assignee: Clement Escoffier
>
> The iPOJO manipulator also instruments static inner classes that don't have
> any iPOJO annotations.
> For example:
> {code}
> private static final Function<String, String> TRIM = new Function() {
> public String apply(String input) {
> return input.trim();
> }
> };
> {code}
> results in the following:
> {code}
> private static final Function<String, String> TRIM = new Function()
> {
> public String apply(String paramAnonymousString)
> {
> if (!this.this$0.__M1___apply$java_lang_String) {
> return super.__M_apply(paramAnonymousString);
> }
> String str;
> try
> {
> this.this$0.__IM.onEntry(this, "1___apply$java_lang_String", new
> Object[] { paramAnonymousString });
> str = super.__M_apply(paramAnonymousString);
> this.this$0.__IM.onExit(this, "1___apply$java_lang_String", str);
> }
> catch (Throwable localThrowable)
> {
> this.this$0.__IM.onError(this, "1___apply$java_lang_String",
> localThrowable);
> throw localThrowable;
> }
> return str;
> }
>
> public String __M_apply(String input)
> {
> return input.trim();
> }
> };
> {code}
> This fails at runtime with NoSuchFieldError for this.this$0
--
This message was sent by Atlassian JIRA
(v6.1#6144)