-
-
Notifications
You must be signed in to change notification settings - Fork 301
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change to -pedantic needs Eclipse restart #6507
Comments
As discussed with @pkriens the fixup and inited flags should be reset on Workspace-refresh too ( So I will try to find a way. |
Just as a suggestion of where to look: Does this perhaps have anything to do with the fact that the Bnd |
Thanks @kriegfrj thats likely true somehow. I tried various approaches but I couldn't figure it out. |
During recent work with pedantic warnings I noticed a behavior that a change to
-pendatic
(e.g. incnf/build.bnd
) requires a Eclipse restart.Reload workspace button
is not enough.
Analysis
I believe the reason is related to this:
aQute.bnd.osgi.Processor.begin()
bnd/biz.aQute.bndlib/src/aQute/bnd/osgi/Processor.java
Lines 1036 to 1038 in 2ec2d15
a) aQute.bnd.osgi.Processor.getProperties()
bnd/biz.aQute.bndlib/src/aQute/bnd/osgi/Processor.java
Lines 635 to 638 in 2ec2d15
and
b) aQute.bnd.osgi.Analyzer.begin() (calls
super.begin()
)bnd/biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java
Lines 1777 to 1780 in 2ec2d15
The problem is those methods are guarded by the flag
boolean Processor.fixup
andboolean Analyzer.inited
, which are only set once in those methods and never reset.Basically this means that pedantic is only set when the Workspace is initialized.
The Workspace reload button does not have the same effect -it seems to reload every other properties, but not
-pedantic
seems to be a different thing.Question:
Is this by design?
The text was updated successfully, but these errors were encountered: