[go: nahoru, domu]

Skip to content

Commit

Permalink
fix: Supress unchecked conversion warnings (#1014)
Browse files Browse the repository at this point in the history
* fix: Supress unchecked conversion warnings

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Ben Creech <bpcreech@google.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed Aug 19, 2022
1 parent 2d57d78 commit a93ee23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public static StringPayload of(String data) {
return new StringPayload(data);
}

@SuppressWarnings("unchecked")
static StringPayload fromPb(com.google.logging.v2.LogEntry entryPb) {
return StringPayload.of(entryPb.getTextPayload());
}
Expand Down Expand Up @@ -124,6 +125,7 @@ public static JsonPayload of(Struct data) {
return new JsonPayload(data);
}

@SuppressWarnings("unchecked")
static JsonPayload fromPb(com.google.logging.v2.LogEntry entryPb) {
return JsonPayload.of(entryPb.getJsonPayload());
}
Expand All @@ -148,6 +150,7 @@ public static ProtoPayload of(Any data) {
return new ProtoPayload(data);
}

@SuppressWarnings("unchecked")
static ProtoPayload fromPb(com.google.logging.v2.LogEntry entryPb) {
return ProtoPayload.of(entryPb.getProtoPayload());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ public static BucketDestination of(String bucket) {
return new BucketDestination(bucket);
}

@SuppressWarnings("unchecked")
static BucketDestination fromPb(String destinationPb) {
Matcher matcher = PATTERN.matcher(destinationPb);
if (!matcher.matches()) {
Expand Down Expand Up @@ -221,6 +222,7 @@ static boolean matchesDestination(String destinationPb) {
return PATTERN.matcher(destinationPb).matches();
}

@SuppressWarnings("unchecked")
static DatasetDestination fromPb(String destinationPb) {
Matcher matcher = PATTERN.matcher(destinationPb);
if (!matcher.matches()) {
Expand Down Expand Up @@ -321,6 +323,7 @@ static boolean matchesDestination(String destinationPb) {
return PATTERN.matcher(destinationPb).matches();
}

@SuppressWarnings("unchecked")
static LoggingBucketDestination fromPb(String destinationPb) {
Matcher matcher = PATTERN.matcher(destinationPb);
if (!matcher.matches()) {
Expand Down Expand Up @@ -413,6 +416,7 @@ static boolean matchesDestination(String destinationPb) {
return PATTERN.matcher(destinationPb).matches();
}

@SuppressWarnings("unchecked")
static TopicDestination fromPb(String destinationPb) {
Matcher matcher = PATTERN.matcher(destinationPb);
if (!matcher.matches()) {
Expand Down

0 comments on commit a93ee23

Please sign in to comment.