AbstractProject project = build.getProject();
DescribableList publishers = project.getPublishersList();final Fingerprinter fp = (Fingerprinter) publishers.get(hudson.tasks.Fingerprinter.class);
publishers.remove(fp);--
You received this message because you are subscribed to the Google Groups "Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/0ee40860-571a-4f56-bf15-1f7e619aef64%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
A plugin should never modify project configuration in the regular course of a build.
Probably what you want is to just to have your `BuildWrapper` do something else when its environment is torn down.