Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.

Commit 4516c84

Browse files
committed
Merge pull request #133 from davorbonaci/backport-21
Backport apache/beam#21
2 parents 962c621 + 30ca892 commit 4516c84

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

sdk/src/main/java/com/google/cloud/dataflow/sdk/options/DataflowPipelineDebugOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public Dataflow create(PipelineOptions options) {
173173
/**
174174
* Whether to update the currently running pipeline with the same name as this one.
175175
*
176-
* @deprecated This property is replaced by @{link DataflowPipelineOptions#getUpdate()}
176+
* @deprecated This property is replaced by {@link DataflowPipelineOptions#getUpdate()}
177177
*/
178178
@Deprecated
179179
@Description("If set, replace the existing pipeline with the name specified by --jobName with "

sdk/src/main/java/com/google/cloud/dataflow/sdk/transforms/DoFnWithContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public final <AggInputT> Aggregator<AggInputT, AggInputT> createAggregator(
407407
}
408408

409409
/**
410-
* Finalize the @{link DoFnWithContext} construction to prepare for processing.
410+
* Finalize the {@link DoFnWithContext} construction to prepare for processing.
411411
* This method should be called by runners before any processing methods.
412412
*/
413413
void prepareForProcessing() {

sdk/src/test/java/com/google/cloud/dataflow/sdk/transforms/DoFnTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void processElement(DoFn<String, String>.ProcessContext c) throws Excepti
179179
}
180180

181181
/**
182-
* Initialize a test pipeline with the specified @{link DoFn}.
182+
* Initialize a test pipeline with the specified {@link DoFn}.
183183
*/
184184
private <InputT, OutputT> TestPipeline createTestPipeline(DoFn<InputT, OutputT> fn) {
185185
TestPipeline pipeline = TestPipeline.create();

sdk/src/test/java/com/google/cloud/dataflow/sdk/transforms/DoFnWithContextTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public void processElement(ProcessContext c) {}
213213
}
214214

215215
/**
216-
* Initialize a test pipeline with the specified @{link DoFn}.
216+
* Initialize a test pipeline with the specified {@link DoFn}.
217217
*/
218218
private <InputT, OutputT> TestPipeline createTestPipeline(DoFnWithContext<InputT, OutputT> fn) {
219219
TestPipeline pipeline = TestPipeline.create();

sdk/src/test/java/com/google/cloud/dataflow/sdk/util/SimpleDoFnRunnerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import java.util.List;
3434

3535
/**
36-
* Tests for base @{link DoFnRunnerBase} functionality.
36+
* Tests for base {@link DoFnRunnerBase} functionality.
3737
*/
3838
@RunWith(JUnit4.class)
3939
public class SimpleDoFnRunnerTest {

sdk/src/test/java/com/google/cloud/dataflow/sdk/util/UserCodeExceptionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import java.io.IOException;
3838

3939
/**
40-
* Tests for @{link UserCodeException} functionality.
40+
* Tests for {@link UserCodeException} functionality.
4141
*/
4242
@RunWith(JUnit4.class)
4343
public class UserCodeExceptionTest {

0 commit comments

Comments
 (0)