Skip to content

Commit

Permalink
Suppress common-java:DuplicatedBlocks: Source files should not have a…
Browse files Browse the repository at this point in the history
…ny duplicated blocks
  • Loading branch information
dennishendriksen committed Nov 27, 2018
1 parent eab4991 commit 974ec4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.springframework.stereotype.Component;

@Component
@SuppressWarnings("unused")
@SuppressWarnings({"unused", "common-java:DuplicatedBlocks"}) // Source files should not have any duplicated blocks
public class Icd10ExpanderDecoratorFactory implements DynamicRepositoryDecoratorFactory<Entity> {
private static final String ID = "icd10expander";
private static final String ICD10_ENTITY_TYPE_ID = "icd10EntityTypeId";
Expand Down

0 comments on commit 974ec4c

Please sign in to comment.