We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ed3cc5 commit 07764a9Copy full SHA for 07764a9
driver/src/main/java/org/neo4j/driver/internal/util/DriverInfoUtil.java
@@ -45,7 +45,7 @@ public static BoltAgent boltAgent() {
45
productInfo,
46
platformBuilder.isEmpty() ? null : platformBuilder.toString(),
47
language.orElse(null),
48
- languageDetails.isEmpty() ? null : languageDetails.toString());
+ languageDetails.map(StringBuilder::toString).orElse(null));
49
}
50
51
/**
0 commit comments