Skip to content

Commit 587301a

Browse files
committed
Made DEFAULT_USER_AGENT a private constant
1 parent c87c35c commit 587301a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/main/java/org/neo4j/driver/internal/ConnectionSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
public class ConnectionSettings
3131
{
32-
public static final String DEFAULT_USER_AGENT = format( "neo4j-java/%s", driverVersion() );
32+
private static final String DEFAULT_USER_AGENT = format( "neo4j-java/%s", driverVersion() );
3333

3434
/**
3535
* Extracts the driver version from the driver jar MANIFEST.MF file.

0 commit comments

Comments
 (0)