Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeddada1 committed Sep 19, 2023
1 parent 688953d commit 743b9f7
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,11 @@ private static String calculateDependenciesSection(Bom bom) {
continue;
}

// Skipping grpc-android, grpc-binder and grpc-cronet as they are not used by Google Cloud Client
// Libraries for Java. Checking for availability of these unused artifacts on Maven Central has
// caused BOM validation check to fail in the past.
// See
// Skipping grpc-android, grpc-binder and grpc-cronet as they are not used by Google Cloud
// Client Libraries for Java. Checking for availability of these unused artifacts on Maven
// Central has caused BOM validation check to fail in the past. See
// https://github.com/googleapis/sdk-platform-java/pull/1989#issuecomment-1724039670
if ("grpc-android".equals(managedDependency.getArtifactId())
|| "grpc-binder".equals(managedDependency.getArtifactId())
|| "grpc-cronet".equals(managedDependency.getArtifactId())) {
if ("grpc-android".equals(managedDependency.getArtifactId())) {
continue;
}

Expand Down

0 comments on commit 743b9f7

Please sign in to comment.