Skip to content

Commit 14f9867

Browse files
Chore(deps): Bump org.openrewrite.recipe:rewrite-recipe-bom from 3.16.0 to 3.17.0 (#14180)
* Chore(deps): Bump org.openrewrite.recipe:rewrite-recipe-bom Bumps [org.openrewrite.recipe:rewrite-recipe-bom](https://github.com/openrewrite/rewrite-recipe-bom) from 3.16.0 to 3.17.0. - [Release notes](https://github.com/openrewrite/rewrite-recipe-bom/releases) - [Commits](openrewrite/rewrite-recipe-bom@v3.16.0...v3.17.0) --- updated-dependencies: - dependency-name: org.openrewrite.recipe:rewrite-recipe-bom dependency-version: 3.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * run openrewrite --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Siedlerchr <[email protected]>
1 parent f159493 commit 14f9867

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
// This is the behavior when applied in the root project (https://docs.openrewrite.org/reference/gradle-plugin-configuration#multi-module-gradle-projects)
1111

1212
dependencies {
13-
rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:3.16.0"))
13+
rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:3.17.0"))
1414
rewrite("org.openrewrite.recipe:rewrite-static-analysis")
1515
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks")
1616
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks")

jabgui/src/main/java/org/jabref/gui/walkthrough/declarative/NodeResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static NodeResolver action(@NonNull StandardActions action) {
9696

9797
if (button.getTooltip() != null) {
9898
String tooltipText = button.getTooltip().getText();
99-
if (tooltipText != null && tooltipText.equals(action.getText())) {
99+
if (tooltipText.equals(action.getText())) {
100100
return true;
101101
}
102102
}
@@ -109,7 +109,7 @@ static NodeResolver action(@NonNull StandardActions action) {
109109
return true;
110110
}
111111
}
112-
return button.getText() != null && button.getText().equals(actionText);
112+
return button.getText().equals(actionText);
113113
}
114114

115115
return false;

0 commit comments

Comments
 (0)