Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/2169#discussion_r69048019 --- Diff: flink-scala/src/main/scala/org/apache/flink/api/scala/DataSet.scala --- @@ -1353,6 +1353,16 @@ class DataSet[T: ClassTag](set: JavaDataSet[T]) { getCallLocationName())) // -------------------------------------------------------------------------------------------- + // Minus + // -------------------------------------------------------------------------------------------- + + /** + * Creates a new DataSet containing the elements from `this` DataSet minus elements from `other` + * DataSet. + */ + def minus(other: DataSet[T]): DataSet[T] = wrap(javaSet.minus(other.javaSet)) --- End diff -- Please remove these changes as well. Thanks
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---