Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

feat: remove empty proto BatchProto.java #556

Merged
merged 1 commit into from Aug 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Expand Up @@ -45,7 +45,7 @@ If you are using Maven without BOM, add this to your dependencies:

If you are using Gradle 5.x or later, add this to your dependencies
```Groovy
implementation platform('com.google.cloud:libraries-bom:20.8.0')
implementation platform('com.google.cloud:libraries-bom:20.9.0')

compile 'com.google.cloud:google-cloud-talent'
```
Expand Down Expand Up @@ -92,8 +92,7 @@ use this Talent Solution Client Library.

## Samples

Samples are in the [`samples/`](https://github.com/googleapis/java-talent/tree/master/samples) directory. The samples' `README.md`
has instructions for running the samples.
Samples are in the [`samples/`](https://github.com/googleapis/java-talent/tree/master/samples) directory.

| Sample | Source Code | Try it |
| --------------------------- | --------------------------------- | ------ |
Expand Down
Expand Up @@ -16,4 +16,9 @@
<className>com/google/cloud/talent/v4beta1/*OrBuilder</className>
<method>boolean has*(*)</method>
</difference>

<difference>
<differenceType>8001</differenceType>
<className>com/google/cloud/talent/v4beta1/BatchProto</className>
</difference>
</differences>

This file was deleted.

3 changes: 2 additions & 1 deletion synth.py
Expand Up @@ -15,6 +15,7 @@
"""This script is used to synthesize generated parts of this library."""

import synthtool.languages.java as java
import os

AUTOSYNTH_MULTIPLE_COMMITS = True

Expand All @@ -27,7 +28,7 @@
version=version,
bazel_target=f'//google/cloud/{service}/{version}:google-cloud-{service}-{version}-java',
)

os.remove('proto-google-cloud-talent-v4beta1/src/main/java/com/google/cloud/talent/v4beta1/BatchProto.java')
java.common_templates(excludes=[
'.kokoro/build.sh',
'.kokoro/nightly/samples.cfg',
Expand Down