From d5ff00c01d841e205d38b0c8f5781dc12f684cb8 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Thu, 7 Nov 2024 10:49:08 +0100 Subject: [PATCH] OZG-7037 rename variable --- .../common/command/grpc/GrpcOzgCloudCommandService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-lib-core/src/main/java/de/ozgcloud/apilib/common/command/grpc/GrpcOzgCloudCommandService.java b/api-lib-core/src/main/java/de/ozgcloud/apilib/common/command/grpc/GrpcOzgCloudCommandService.java index 5f36b77..5cacd3b 100644 --- a/api-lib-core/src/main/java/de/ozgcloud/apilib/common/command/grpc/GrpcOzgCloudCommandService.java +++ b/api-lib-core/src/main/java/de/ozgcloud/apilib/common/command/grpc/GrpcOzgCloudCommandService.java @@ -81,8 +81,8 @@ public class GrpcOzgCloudCommandService implements OzgCloudCommandService { return response.getExistsPendingCommands(); } - GrpcExistsPendingCommandsRequest buildHasPendingCommandRequest(OzgCloudVorgangId id) { - return GrpcExistsPendingCommandsRequest.newBuilder().setVorgangId(id.toString()).build(); + GrpcExistsPendingCommandsRequest buildHasPendingCommandRequest(OzgCloudVorgangId vorgangId) { + return GrpcExistsPendingCommandsRequest.newBuilder().setVorgangId(vorgangId.toString()).build(); } CommandServiceBlockingStub getCommandServiceStub() { -- GitLab