Github user aljoscha commented on a diff in the pull request:
https://github.com/apache/flink/pull/1237#discussion_r44515720
--- Diff:
flink-scala/src/main/scala/org/apache/flink/api/scala/ExecutionEnvironment.scala
---
@@ -64,15 +62,19 @@ import scala.reflect.ClassTag
* created. If the program is submitted to a cluster a remote execution
environment will
* be created.
*/
-class ExecutionEnvironment(javaEnv: JavaEnv) {
+class ExecutionEnvironment(javaEnv: JavaEnv) extends
AbstractExecutionEnvironment {
/**
- * @return the Java Execution environment.
+ * Returns the enclosed Java ExecutionEnvironment for special use cases.
+ *
+ * @return reference to the ExecutionEnvironment of the Java API
*/
def getJavaEnv: JavaEnv = javaEnv
+
/**
* Gets the config object.
*/
+ @Override
--- End diff --
In Scala override is done as:
```
override def getConfig ...
```
this is also in StreamExecutionEnvironment.scala
---
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 [email protected] or file a JIRA ticket
with INFRA.
---