Merge pull request #22326 from akvelon/pg-trigger-example-deploy

[Playground]: Modified WithKeys Playground Example
diff --git a/learning/katas/java/Common Transforms/WithKeys/WithKeys/src/org/apache/beam/learning/katas/commontransforms/withkeys/Task.java b/learning/katas/java/Common Transforms/WithKeys/WithKeys/src/org/apache/beam/learning/katas/commontransforms/withkeys/Task.java
index fceaac0..d1f1250 100644
--- a/learning/katas/java/Common Transforms/WithKeys/WithKeys/src/org/apache/beam/learning/katas/commontransforms/withkeys/Task.java
+++ b/learning/katas/java/Common Transforms/WithKeys/WithKeys/src/org/apache/beam/learning/katas/commontransforms/withkeys/Task.java
@@ -44,8 +44,7 @@
     Pipeline pipeline = Pipeline.create(options);
 
     PCollection<String> words =
-        pipeline.apply(
-            Create.of("apple", "banana", "cherry", "durian", "guava", "melon"));
+        pipeline.apply(Create.of("apple", "banana", "cherry", "durian", "guava", "melon"));
 
     PCollection<KV<String, String>> output = applyTransform(words);