@@ -63,30 +63,27 @@ public Client(String username, String password, Environment environment, String
6363 this .config .setApplicationName (applicationName );
6464 }
6565
66- public Client (String username , String password , Environment environment , String applicationName , int connectionTimeoutMillis ) {
66+ public Client (String username , String password , Environment environment , int connectionTimeoutMillis ) {
6767
6868 this .config = new Config ();
6969 this .config .setUsername (username );
7070 this .config .setPassword (password );
7171 this .setEnvironment (environment );
72- this .config .setApplicationName (applicationName );
7372 this .config .setConnectionTimeoutMillis (connectionTimeoutMillis );
7473 }
7574
76- public Client (String apiKey , Environment environment , String applicationName ) {
75+ public Client (String apiKey , Environment environment ) {
7776
7877 this .config = new Config ();
7978 this .config .setApiKey (apiKey );
8079 this .setEnvironment (environment );
81- this .config .setApplicationName (applicationName );
8280 }
8381
84- public Client (String apiKey , Environment environment , String applicationName , int connectionTimeoutMillis ) {
82+ public Client (String apiKey , Environment environment , int connectionTimeoutMillis ) {
8583
8684 this .config = new Config ();
8785 this .config .setApiKey (apiKey );
8886 this .setEnvironment (environment );
89- this .config .setApplicationName (applicationName );
9087 this .config .setConnectionTimeoutMillis (connectionTimeoutMillis );
9188 }
9289
0 commit comments