Skip to content

Commit

Permalink
[hotfix] Remove unused methods in StreamGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
pnowojski committed Jul 7, 2022
1 parent 4f57d02 commit 2656f95
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -811,18 +811,6 @@ private <OUT> void setSerializers(
vertex.setSerializerOut(out);
}

public void setSerializersFrom(Integer from, Integer to) {
StreamNode fromVertex = getStreamNode(from);
StreamNode toVertex = getStreamNode(to);

toVertex.setSerializersIn(fromVertex.getTypeSerializerOut());
toVertex.setSerializerOut(fromVertex.getTypeSerializerIn(0));
}

public <OUT> void setOutType(Integer vertexID, TypeInformation<OUT> outType) {
getStreamNode(vertexID).setSerializerOut(outType.createSerializer(executionConfig));
}

public void setInputFormat(Integer vertexID, InputFormat<?, ?> inputFormat) {
getStreamNode(vertexID).setInputFormat(inputFormat);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,6 @@ public TypeSerializer<?>[] getTypeSerializersIn() {
return typeSerializersIn;
}

public TypeSerializer<?> getTypeSerializerIn(int index) {
return typeSerializersIn[index];
}

public TypeSerializer<?> getTypeSerializerOut() {
return typeSerializerOut;
}
Expand Down

0 comments on commit 2656f95

Please sign in to comment.