Community
Participate
Working Groups
Example: ------------- public aspect MyAspect { public MyClass.new(String string) { this(); //<---------------- HERE System.out.println("Hello"); } } public class MyClass { public MyClass(String name1, String name2) { } } ------------ We get an error at the marked location that the MyClass() constructor does not exist. This error is correct and as expected. When we request the quickfix for this error, however, the proposal is to create the MyAspect() constructor, which doesn't fix the error at all (i.e. constructor is created on the aspect rather than the ITD target type.