Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
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 @@ -173,7 +173,7 @@ public Dataflow create(PipelineOptions options) {
/**
* Whether to update the currently running pipeline with the same name as this one.
*
* @deprecated This property is replaced by @{link DataflowPipelineOptions#getUpdate()}
* @deprecated This property is replaced by {@link DataflowPipelineOptions#getUpdate()}
*/
@Deprecated
@Description("If set, replace the existing pipeline with the name specified by --jobName with "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ public final <AggInputT> Aggregator<AggInputT, AggInputT> createAggregator(
}

/**
* Finalize the @{link DoFnWithContext} construction to prepare for processing.
* Finalize the {@link DoFnWithContext} construction to prepare for processing.
* This method should be called by runners before any processing methods.
*/
void prepareForProcessing() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public void processElement(DoFn<String, String>.ProcessContext c) throws Excepti
}

/**
* Initialize a test pipeline with the specified @{link DoFn}.
* Initialize a test pipeline with the specified {@link DoFn}.
*/
private <InputT, OutputT> TestPipeline createTestPipeline(DoFn<InputT, OutputT> fn) {
TestPipeline pipeline = TestPipeline.create();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public void processElement(ProcessContext c) {}
}

/**
* Initialize a test pipeline with the specified @{link DoFn}.
* Initialize a test pipeline with the specified {@link DoFn}.
*/
private <InputT, OutputT> TestPipeline createTestPipeline(DoFnWithContext<InputT, OutputT> fn) {
TestPipeline pipeline = TestPipeline.create();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import java.util.List;

/**
* Tests for base @{link DoFnRunnerBase} functionality.
* Tests for base {@link DoFnRunnerBase} functionality.
*/
@RunWith(JUnit4.class)
public class SimpleDoFnRunnerTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import java.io.IOException;

/**
* Tests for @{link UserCodeException} functionality.
* Tests for {@link UserCodeException} functionality.
*/
@RunWith(JUnit4.class)
public class UserCodeExceptionTest {
Expand Down