-
Notifications
You must be signed in to change notification settings - Fork 31
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
Remove deprecated code and prepare for Java 11 #465
Conversation
Bumps [analysis-pom](https://github.com/jenkinsci/analysis-pom-plugin) from 5.37.0 to 6.0.0. - [Release notes](https://github.com/jenkinsci/analysis-pom-plugin/releases) - [Changelog](https://github.com/jenkinsci/analysis-pom-plugin/blob/master/CHANGELOG.md) - [Commits](jenkinsci/analysis-pom-plugin@v5.37.0...v6.0.0) --- updated-dependencies: - dependency-name: org.jvnet.hudson.plugins:analysis-pom dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
@SuppressWarnings("unused") | ||
@Deprecated | ||
protected Optional<Run<?, ?>> find(final Run<?, ?> owner, final Run<?, ?> lastCompletedBuildOfReferenceJob) { | ||
protected Optional<Run<?, ?>> find(final Run<?, ?> owner, final Run<?, ?> lastCompletedBuildOfReferenceJob, |
Check notice
Code scanning / CodeQL
Useless parameter
@SuppressWarnings("unused") | ||
@Deprecated | ||
protected Optional<Run<?, ?>> find(final Run<?, ?> owner, final Run<?, ?> lastCompletedBuildOfReferenceJob) { | ||
protected Optional<Run<?, ?>> find(final Run<?, ?> owner, final Run<?, ?> lastCompletedBuildOfReferenceJob, |
Check notice
Code scanning / CodeQL
Useless parameter
@Deprecated | ||
protected Optional<Run<?, ?>> find(final Run<?, ?> owner, final Run<?, ?> lastCompletedBuildOfReferenceJob) { | ||
protected Optional<Run<?, ?>> find(final Run<?, ?> owner, final Run<?, ?> lastCompletedBuildOfReferenceJob, | ||
final FilteredLog logger) { |
Check notice
Code scanning / CodeQL
Useless parameter
Codecov Report
@@ Coverage Diff @@
## master #465 +/- ##
============================================
+ Coverage 71.42% 71.50% +0.07%
+ Complexity 386 381 -5
============================================
Files 48 48
Lines 1169 1158 -11
Branches 101 101
============================================
- Hits 835 828 -7
- Misses 293 296 +3
+ Partials 41 34 -7
... and 5 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Remove obsolete code and refactor some classes. Switch Java baseline to Java 11.