Skip to content

Commit a202cbf

Browse files
authored
Update region tags (GoogleCloudPlatform#3586)
1 parent cad6517 commit a202cbf

File tree

5 files changed

+2
-9
lines changed

5 files changed

+2
-9
lines changed

appengine-java8/datastore/src/main/java/com/example/appengine/StatsServlet.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,3 @@ protected void doGet(HttpServletRequest req, HttpServletResponse resp)
4545
w.printf("%d bytes\n%d entities\n", totalBytes, totalEntities);
4646
}
4747
}
48-
// [END cursors]

appengine-java8/endpoints-v2-guice/src/main/java/com/example/echo/Echo.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ public class Echo {
6262
public Message echo(Message message, @Named("n") @Nullable Integer n) {
6363
return doEcho(message, n);
6464
}
65-
// [END echo_method]
6665

6766
/**
6867
* Echoes the received message back. If n is a non-negative integer, the message is copied that

appengine-java8/endpoints-v2-skeleton/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,3 @@ limitations under the License.
111111
</build>
112112
<!-- [END pom_build] -->
113113
</project>
114-
<!-- [END pom] -->

appengine-java8/guestbook-cloud-datastore/src/main/java/com/example/guestbook/SignGuestbookServlet.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
//[START all]
18-
1917
package com.example.guestbook;
2018

2119
import com.google.appengine.api.users.User;
@@ -26,7 +24,6 @@
2624
import javax.servlet.http.HttpServletRequest;
2725
import javax.servlet.http.HttpServletResponse;
2826

29-
//[START all]
3027
public class SignGuestbookServlet extends HttpServlet {
3128

3229
// Process the HTTP POST of the form
@@ -50,4 +47,3 @@ public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOEx
5047
resp.sendRedirect("/guestbook.jsp?guestbookName=" + guestbookName);
5148
}
5249
}
53-
//[END all]

dataflow/encryption-keys/src/main/java/com/example/dataflow/cmek/BigQueryKmsKey.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static void main(String[] args) {
6666
// String kmsKey =
6767
// "projects/<project>/locations/<kms-location>/keyRings/<kms-keyring>/cryptoKeys/<kms-key>";
6868
String kmsKey = options.getKmsKey();
69-
69+
7070
// Create and run an Apache Beam pipeline.
7171
Pipeline pipeline = Pipeline.create(options);
7272
pipeline
@@ -82,6 +82,6 @@ public static void main(String[] args) {
8282
.withWriteDisposition(WriteDisposition.WRITE_TRUNCATE)
8383
.withKmsKey(kmsKey));
8484
pipeline.run().waitUntilFinish();
85-
// [START dataflow_cmek]
85+
// [END dataflow_cmek]
8686
}
8787
}

0 commit comments

Comments
 (0)