Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void initializeOnMaster(ClassLoader loader) throws Exception {
setInputSplitSource(inputFormat);
}

// configure input formats and invoke initializeGlobal()
// configure output formats and invoke initializeGlobal()
Map<OperatorID, UserCodeWrapper<? extends OutputFormat<?>>> outputFormats =
formatContainer.getOutputFormats();
for (Map.Entry<OperatorID, UserCodeWrapper<? extends OutputFormat<?>>> entry :
Expand Down Expand Up @@ -125,7 +125,7 @@ public void finalizeOnMaster(ClassLoader loader) throws Exception {
// set user classloader before calling user code
Thread.currentThread().setContextClassLoader(loader);

// configure input formats and invoke finalizeGlobal()
// configure output formats and invoke finalizeGlobal()
Map<OperatorID, UserCodeWrapper<? extends OutputFormat<?>>> outputFormats =
formatContainer.getOutputFormats();
for (Map.Entry<OperatorID, UserCodeWrapper<? extends OutputFormat<?>>> entry :
Expand Down