We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d83275a commit 970b1ebCopy full SHA for 970b1eb
1 file changed
sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/ParDoTest.java
@@ -914,7 +914,9 @@ public void testSideInputAnnotationFailedValidationMissing() {
914
DoFn<Integer, List<Integer>> fn =
915
new DoFn<Integer, List<Integer>>() {
916
@ProcessElement
917
- public void processElement(@SideInput(sideInputTag1) String tag1) {ProcessContext c; }
+ public void processElement(@SideInput(sideInputTag1) String tag1) {
918
+ ProcessContext c;
919
+ }
920
};
921
922
thrown.expect(IllegalArgumentException.class);
0 commit comments