Copilot commented on code in PR #6899:
URL: https://github.com/apache/ignite-3/pull/6899#discussion_r2501832465


##########
gradle/libs.versions.toml:
##########
@@ -278,6 +282,9 @@ auto-service-annotations = { module = 
"com.google.auto.service:auto-service-anno
 
 awaitility = { module = "org.awaitility:awaitility", version.ref = 
"awaitility" }
 
+hikariCP = { module = "com.zaxxer:HikariCP", version.ref="hikariCP"}
+c3p0 = { module = "com.mchange:c3p0", version.ref="c3p0"}

Review Comment:
   Inconsistent formatting: missing space after '=' in 'version.ref=\"c3p0\"'. 
Should be 'version.ref = \"c3p0\"' to match the style used elsewhere in the 
file.
   ```suggestion
   hikariCP = { module = "com.zaxxer:HikariCP", version.ref = "hikariCP"}
   c3p0 = { module = "com.mchange:c3p0", version.ref = "c3p0"}
   ```



##########
gradle/libs.versions.toml:
##########
@@ -278,6 +282,9 @@ auto-service-annotations = { module = 
"com.google.auto.service:auto-service-anno
 
 awaitility = { module = "org.awaitility:awaitility", version.ref = 
"awaitility" }
 
+hikariCP = { module = "com.zaxxer:HikariCP", version.ref="hikariCP"}

Review Comment:
   Inconsistent formatting: missing space after '=' in 
'version.ref=\"hikariCP\"'. Should be 'version.ref = \"hikariCP\"' to match the 
style used in line 286 and throughout the file.
   ```suggestion
   hikariCP = { module = "com.zaxxer:HikariCP", version.ref = "hikariCP"}
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to