File tree 1 file changed +2
-2
lines changed
website/src/documentation
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ The following example code shows how to create a `PCollection` from an in-memory
339
339
``` java
340
340
public static void main(String [] args) {
341
341
// Create a Java Collection, in this case a List of Strings.
342
- static final List<String > LINES = Arrays . asList(
342
+ final List<String > LINES = Arrays . asList(
343
343
" To be, or not to be: that is the question: " ,
344
344
" Whether 'tis nobler in the mind to suffer " ,
345
345
" The slings and arrows of outrageous fortune, " ,
@@ -351,7 +351,7 @@ public static void main(String[] args) {
351
351
Pipeline p = Pipeline . create(options);
352
352
353
353
// Apply Create, passing the list and the coder, to create the PCollection.
354
- p. apply(Create . of(LINES )). setCoder(StringUtf8Coder . of())
354
+ p. apply(Create . of(LINES )). setCoder(StringUtf8Coder . of());
355
355
}
356
356
```
357
357
``` py
You can’t perform that action at this time.
0 commit comments