Skip to content

Commit

Permalink
[streaming] [scala] Revert removing getJavaStream() from DataStream
Browse files Browse the repository at this point in the history
  • Loading branch information
mbalassi authored and StephanEwen committed Feb 4, 2016
1 parent 69f7f6d commit 116337f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DataStream[T](stream: JavaStream[T]) {
/**
* Gets the underlying java DataStream object.
*/
private[flink] def javaStream: JavaStream[T] = stream
def javaStream: JavaStream[T] = stream

/**
* Returns the [[StreamExecutionEnvironment]] associated with the current [[DataStream]].
Expand Down Expand Up @@ -130,7 +130,7 @@ class DataStream[T](stream: JavaStream[T]) {
case _ => throw new UnsupportedOperationException("Only supported for operators.")
this
}

/**
* Turns off chaining for this operator so thread co-location will not be
* used as an optimization. </p> Chaining can be turned off for the whole
Expand Down

0 comments on commit 116337f

Please sign in to comment.