From 44dd51f476beadc96a78c9d5c5ca68ff084e60d3 Mon Sep 17 00:00:00 2001 From: Roberto Cortez Date: Fri, 9 Jun 2023 16:25:48 +0100 Subject: [PATCH] Fix build --- .github/workflows/pulls.yml | 16 ++++++++++++++++ .../io/smallrye/common/function/Functions.java | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pulls.yml diff --git a/.github/workflows/pulls.yml b/.github/workflows/pulls.yml new file mode 100644 index 00000000..eb3a1963 --- /dev/null +++ b/.github/workflows/pulls.yml @@ -0,0 +1,16 @@ +name: Pulls + +on: + pull_request: + types: [closed] + +jobs: + release: + runs-on: ubuntu-latest + name: pulls + + steps: + - uses: radcortez/milestone-set-action@main + name: milestone set + with: + github-token: ${{secrets.GITHUB_TOKEN}} diff --git a/function/src/main/java/io/smallrye/common/function/Functions.java b/function/src/main/java/io/smallrye/common/function/Functions.java index 8058eeac..08f60db3 100644 --- a/function/src/main/java/io/smallrye/common/function/Functions.java +++ b/function/src/main/java/io/smallrye/common/function/Functions.java @@ -780,7 +780,7 @@ public static ExceptionCon * @param the exception type * @param the restricted parameter type * @param the relaxed exception type - * @param predicate a predicate + * @param consumer a consumer * @return a functionally equivalent predicate */ @SuppressWarnings("unchecked")