@@ -42,12 +42,12 @@ public abstract class CommandEvent {
4242 * @param operationId the operation id
4343 * @param requestId the request id
4444 * @param connectionDescription the connection description
45- * @param commandName the command name
4645 * @param databaseName the database name
46+ * @param commandName the command name
4747 * @since 4.11
4848 */
4949 public CommandEvent (@ Nullable final RequestContext requestContext , final long operationId , final int requestId ,
50- final ConnectionDescription connectionDescription , final String commandName , final String databaseName ) {
50+ final ConnectionDescription connectionDescription , final String databaseName , final String commandName ) {
5151 this .requestContext = requestContext ;
5252 this .requestId = requestId ;
5353 this .connectionDescription = connectionDescription ;
@@ -70,7 +70,7 @@ public CommandEvent(@Nullable final RequestContext requestContext, final long op
7070 @ Deprecated
7171 public CommandEvent (@ Nullable final RequestContext requestContext , final long operationId , final int requestId ,
7272 final ConnectionDescription connectionDescription , final String commandName ) {
73- this (requestContext , -1 , requestId , connectionDescription , commandName , "" );
73+ this (requestContext , -1 , requestId , connectionDescription , "" , commandName );
7474 }
7575
7676 /**
@@ -85,7 +85,7 @@ public CommandEvent(@Nullable final RequestContext requestContext, final long op
8585 @ Deprecated
8686 public CommandEvent (@ Nullable final RequestContext requestContext , final int requestId ,
8787 final ConnectionDescription connectionDescription , final String commandName ) {
88- this (requestContext , -1 , requestId , connectionDescription , commandName , "" );
88+ this (requestContext , -1 , requestId , connectionDescription , "" , commandName );
8989 }
9090
9191 /**
0 commit comments