Skip to content

Commit

Permalink
Supress unchecked conversion warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Creech committed Jul 24, 2022
1 parent 85b3ebd commit 818e4e8
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 @@ -127,6 +127,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 @@ -219,6 +220,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 @@ -319,6 +321,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 @@ -411,6 +414,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 818e4e8

Please sign in to comment.