Skip to content

Commit

Permalink
Fix sonar issue on PipelineDDLGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Dec 24, 2024
1 parent f3344a7 commit eac2b94
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

package org.apache.shardingsphere.data.pipeline.core.metadata.generator;

import lombok.RequiredArgsConstructor;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.apache.shardingsphere.data.pipeline.core.sqlbuilder.dialect.DialectPipelineSQLBuilder;
import org.apache.shardingsphere.infra.database.core.spi.DatabaseTypedSPILoader;
Expand All @@ -31,7 +32,7 @@
/**
* Pipeline DDL generator.
*/
@RequiredArgsConstructor
@NoArgsConstructor(access = AccessLevel.PRIVATE)
@Slf4j
public final class PipelineDDLGenerator {

Expand Down

0 comments on commit eac2b94

Please sign in to comment.