Skip to content

Commit

Permalink
[FLINK-12963] [state-processor] Make OperatorTransformation non-insta…
Browse files Browse the repository at this point in the history
…ntiable

The OperatorTransformation class is a simple entry point for creating
BootstrapTransformations via the #bootstrapWith static factory method.
This commit solidifies this by making the class non-instantiable.

This closes apache#8861.
  • Loading branch information
tzulitai committed Jul 4, 2019
1 parent 699c1f8 commit a39ade1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@
*/
@PublicEvolving
@SuppressWarnings("WeakerAccess")
public abstract class OperatorTransformation {
public final class OperatorTransformation {

private OperatorTransformation() {}

/**
* Create a new {@link OperatorTransformation} from a {@link DataSet}.
Expand Down

0 comments on commit a39ade1

Please sign in to comment.