Skip to content

Commit

Permalink
[BEAM-14081] Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Amar3tto committed May 5, 2022
1 parent 9701033 commit 9e31a72
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@
import java.util.Map;
import javax.annotation.Nullable;

/**
* Class OperationContext is a common class for Batch, Sink and Stream CDAP wrapper classes that use
* it to provide common details.
*/
/** Class for Batch, Sink and Stream CDAP wrapper classes that use it to provide common details. */
@SuppressWarnings({"TypeParameterUnusedInFormals", "nullness"})
public class BatchContextImpl implements BatchContext {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@
import io.cdap.cdap.api.data.batch.Output;
import io.cdap.cdap.etl.api.batch.BatchSinkContext;

/**
* Class BatchSinkContextWrapper is a class for creating context object of different CDAP classes
* with batch sink type.
*/
/** Class for creating context object of different CDAP classes with batch sink type. */
public class BatchSinkContextImpl extends BatchContextImpl implements BatchSinkContext {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@
import io.cdap.cdap.api.data.batch.Input;
import io.cdap.cdap.etl.api.batch.BatchSourceContext;

/**
* Class BatchSourceContextWrapper is a class for creating context object of different CDAP classes
* with batch source type.
*/
/** Class for creating context object of different CDAP classes with batch source type. */
public class BatchSourceContextImpl extends BatchContextImpl implements BatchSourceContext {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@
import javax.annotation.Nullable;
import org.apache.tephra.TransactionFailureException;

/**
* Class StreamingSourceContextWrapper is a class for creating context object of different CDAP
* classes with stream source type.
*/
/** Class for creating context object of different CDAP classes with stream source type. */
public class StreamingSourceContextImpl extends BatchContextImpl implements StreamingSourceContext {

@Override
Expand Down

0 comments on commit 9e31a72

Please sign in to comment.