Skip to content

Commit

Permalink
Library Model for RichFunction.open as an @Initializer method
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Nov 16, 2023
1 parent 4b6e672 commit 370cf08
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@ final class ErrorProneCLIFlagsConfig extends AbstractConfig {
"androidx.fragment.app.Fragment.onActivityCreated",
"androidx.fragment.app.Fragment.onViewCreated",
// Multidex app
"android.support.multidex.Application.onCreate");
"android.support.multidex.Application.onCreate",
// Apache Flink
// See docs:
// https://nightlies.apache.org/flink/flink-docs-master/api/java/org/apache/flink/api/common/functions/RichFunction.html#open-org.apache.flink.api.common.functions.OpenContext-
"org.apache.flink.api.common.functions.RichFunction.open");

static final ImmutableSet<String> DEFAULT_INITIALIZER_ANNOT =
ImmutableSet.of(
Expand Down

0 comments on commit 370cf08

Please sign in to comment.