tags:

views:

619

answers:

1

I work on a large project and want to disable the Eclipse compiler warning stating:

Access to enclosing constructor ... is emulated by a synthetic accessor method. Increasing its visibility will improve your performance

Eclipse version 3.3.2

+6  A: 
erickson
This option seems to be broader than the optimization in the message above. I want to have warnings for accessing non-accessible members of an enclosing type but not see the performance messages.
Gambit
There is only one warning, the one that mentions performance. You can't keep it and get rid of it.
erickson
Thanks, that is the information that I needed.
Gambit