@@ -291,7 +291,7 @@ public Builder toBuilder() {
291
291
* letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
292
292
* ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
293
293
* ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
294
- * string {@code goog}
294
+ * string {@code goog}.
295
295
*/
296
296
public static SubscriptionInfo of (String topic , String name ) {
297
297
return builder (topic , name ).build ();
@@ -307,7 +307,7 @@ public static SubscriptionInfo of(String topic, String name) {
307
307
* letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
308
308
* ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
309
309
* ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
310
- * string {@code goog}
310
+ * string {@code goog}.
311
311
*/
312
312
public static SubscriptionInfo of (TopicId topic , String name ) {
313
313
return builder (topic , name ).build ();
@@ -323,7 +323,7 @@ public static SubscriptionInfo of(TopicId topic, String name) {
323
323
* letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
324
324
* ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
325
325
* ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
326
- * string {@code goog}
326
+ * string {@code goog}.
327
327
* @param endpoint a URL locating the endpoint to which messages should be pushed. For example,
328
328
* an endpoint might use {@code https://example.com/push}.
329
329
*/
@@ -341,7 +341,7 @@ public static SubscriptionInfo of(String topic, String name, String endpoint) {
341
341
* letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
342
342
* ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
343
343
* ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
344
- * string {@code goog}
344
+ * string {@code goog}.
345
345
* @param endpoint a URL locating the endpoint to which messages should be pushed. For example,
346
346
* an endpoint might use {@code https://example.com/push}.
347
347
*/
@@ -359,7 +359,7 @@ public static SubscriptionInfo of(TopicId topic, String name, String endpoint) {
359
359
* letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
360
360
* ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
361
361
* ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
362
- * string {@code goog}
362
+ * string {@code goog}.
363
363
*/
364
364
public static Builder builder (String topic , String name ) {
365
365
return builder (TopicId .of (topic ), name );
@@ -375,7 +375,7 @@ public static Builder builder(String topic, String name) {
375
375
* letters ({@code [A-Za-z]}), numbers ({@code [0-9]}), dashes ({@code -}), underscores
376
376
* ({@code _}), periods ({@code .}), tildes ({@code ~}), plus ({@code +}) or percent signs
377
377
* ({@code %}). It must be between 3 and 255 characters in length and cannot begin with the
378
- * string {@code goog}
378
+ * string {@code goog}.
379
379
*/
380
380
public static Builder builder (TopicId topic , String name ) {
381
381
return new BuilderImpl (topic , name );
0 commit comments