From 46720f3a8c03bbeb449d2b96139cce51e6e9d7a2 Mon Sep 17 00:00:00 2001 From: Jin Seop Kim Date: Tue, 27 May 2025 20:23:19 -0400 Subject: [PATCH] fix: remove white spaces between colon and version --- .../main/java/com/microsoft/model/LibraryOverviewFile.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/docfx-doclet-143274/src/main/java/com/microsoft/model/LibraryOverviewFile.java b/third_party/docfx-doclet-143274/src/main/java/com/microsoft/model/LibraryOverviewFile.java index 63e99ce9..80680de7 100644 --- a/third_party/docfx-doclet-143274/src/main/java/com/microsoft/model/LibraryOverviewFile.java +++ b/third_party/docfx-doclet-143274/src/main/java/com/microsoft/model/LibraryOverviewFile.java @@ -46,7 +46,7 @@ public LibraryOverviewFile( this.outputPath = outputPath; this.fileName = fileName; this.artifactVersion = artifactVersion; - this.librariesBomVersion = librariesBomVersion; + this.librariesBomVersion = librariesBomVersion.trim(); this.repoMetadataFilePath = repoMetadataFilePath; this.recommendedPackage = recommendedPackage; @@ -173,7 +173,7 @@ public LibraryOverviewFile( + " artifact.\n" + "
\n"
               + "implementation(platform("com.google.cloud:libraries-bom:"
-              + librariesBomVersion
+              + this.librariesBomVersion
               + ""))\n"
               + "implementation(""
               + repoMetadata.getDistributionName()