Skip to content

Commit 37a7f0e

Browse files
committed
4883 release - clean code - pmd
1 parent bc15e17 commit 37a7f0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/libs/automation/automation-configuration/automation-configuration-service/src/main/java/com/bytechef/automation/configuration/service/ProjectDeploymentWorkflowServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public List<ProjectDeploymentWorkflow> getProjectDeploymentWorkflows(List<Long>
159159
@Override
160160
@Transactional(readOnly = true)
161161
public boolean isConnectionUsed(long connectionId) {
162-
return (projectDeploymentWorkflowRepository.countByConnectionId(connectionId) > 0);
162+
return projectDeploymentWorkflowRepository.countByConnectionId(connectionId) > 0;
163163
}
164164

165165
@Override

0 commit comments

Comments
 (0)