{"$schema":"https://json.schemastore.org/sarif-2.1.0.json","version":"2.1.0","runs":[{"tool":{"driver":{"name":"codehealth","informationUri":"https://codehealth.canine.dev","rules":[{"id":"D1","name":"Cyclomatic Complexity","shortDescription":{"text":"Cyclomatic Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D1"},{"id":"D2","name":"Cognitive Complexity","shortDescription":{"text":"Cognitive Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D2"},{"id":"D3","name":"God Classes","shortDescription":{"text":"God Classes"},"helpUri":"https://codehealth.canine.dev/dimensions/D3"},{"id":"D4","name":"Code Duplication","shortDescription":{"text":"Code Duplication"},"helpUri":"https://codehealth.canine.dev/dimensions/D4"},{"id":"D13","name":"Secret Scanning","shortDescription":{"text":"Secret Scanning"},"helpUri":"https://codehealth.canine.dev/dimensions/D13","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D15","name":"Churn \u00D7 Complexity Hotspots","shortDescription":{"text":"Churn \u00D7 Complexity Hotspots"},"helpUri":"https://codehealth.canine.dev/dimensions/D15"},{"id":"D16","name":"Bus Factor","shortDescription":{"text":"Bus Factor"},"helpUri":"https://codehealth.canine.dev/dimensions/D16"},{"id":"D19","name":"Documentation Quality","shortDescription":{"text":"Documentation Quality"},"helpUri":"https://codehealth.canine.dev/dimensions/D19"},{"id":"D21","name":"Naming Consistency","shortDescription":{"text":"Naming Consistency"},"helpUri":"https://codehealth.canine.dev/dimensions/D21"},{"id":"D28","name":"Secrets (history)","shortDescription":{"text":"Secrets (history)"},"helpUri":"https://codehealth.canine.dev/dimensions/D28","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D29","name":"Static Analysis (SAST)","shortDescription":{"text":"Static Analysis (SAST)"},"helpUri":"https://codehealth.canine.dev/dimensions/D29","relationships":[{"target":{"id":"CWE-79","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-89","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-78","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-94","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-77","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-79","CWE-89","CWE-78","CWE-94","CWE-77"]}},{"id":"D34","name":"Knowledge Freshness","shortDescription":{"text":"Knowledge Freshness"},"helpUri":"https://codehealth.canine.dev/dimensions/D34"},{"id":"D35","name":"Change Coupling","shortDescription":{"text":"Change Coupling"},"helpUri":"https://codehealth.canine.dev/dimensions/D35"}]}},"results":[{"ruleId":"D1","level":"warning","message":{"text":"AbstractDerivedQuery.convertToCriterion (cyclomatic 41): AbstractDerivedQuery.convertToCriterion has cyclomatic complexity 41 (threshold 15). To reduce it, keep the dispatch but shrink the arms: move each non-trivial case body into its own named function (or onto the value being matched) so the dispatch reads one line per case, and group related cases into a sub-dispatch. Where every arm is uniform \u2014 the same kind of value, with no behaviour of its own \u2014 a table keyed by the case is the shorter form; wherever the arms carry different data or different behaviour, keep them as cases, because collapsing those trades an explicit, reviewable set of cases for nothing."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/derivation/AbstractDerivedQuery.java"},"region":{"startLine":43}}}],"partialFingerprints":{"codehealthFindingId/v1":"b4500582c05c894a85ad7520d81421e4728c5040bc9771345e18376c129bc42e"}},{"ruleId":"D1","level":"warning","message":{"text":"OneToManyOwnedByTargetHelper.determineForeignKeyColumns (cyclomatic 16): OneToManyOwnedByTargetHelper.determineForeignKeyColumns has cyclomatic complexity 16 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":207}}}],"partialFingerprints":{"codehealthFindingId/v1":"e761ce6e7076773f1d2a42b647cafd2c54eba597807409fd2e96f1ca00de0bd2"}},{"ruleId":"D1","level":"warning","message":{"text":"OneToManyWithMappedAssociationConfigurer.determineForeignKeyColumns (cyclomatic 16): OneToManyWithMappedAssociationConfigurer.determineForeignKeyColumns has cyclomatic complexity 16 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java"},"region":{"startLine":84}}}],"partialFingerprints":{"codehealthFindingId/v1":"d6ea9abbc21b39bf8202a03a9d2cbc3e1f51a5aa4aea3315f1ea880b914e518c"}},{"ruleId":"D1","level":"warning","message":{"text":"EmbeddedClassMapping.getUpdateValues (cyclomatic 16): EmbeddedClassMapping.getUpdateValues has cyclomatic complexity 16 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/EmbeddedClassMapping.java"},"region":{"startLine":251}}}],"partialFingerprints":{"codehealthFindingId/v1":"e8c00476529b59f8a4e133fec462932b2b5fa9e29e9337456a3d82a6b4998036"}},{"ruleId":"D2","level":"warning","message":{"text":"ManyToManyMetadataResolver.buildReverseCombiner (cognitive 31): ManyToManyMetadataResolver.buildReverseCombiner has cognitive complexity 31 (threshold 15). Drivers by points: if/else 30, boolean chains 1 (nesting depth added 16). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java"},"region":{"startLine":246}}}],"partialFingerprints":{"codehealthFindingId/v1":"ab52acda71cc1d80378d43212e44a484c24e2474feed5b496faf1a4ca6e50368"}},{"ruleId":"D2","level":"warning","message":{"text":"OneToManyMetadataResolver.resolve (cognitive 31): OneToManyMetadataResolver.resolve has cognitive complexity 31 (threshold 15). Drivers by points: if/else 23, ternaries 8 (nesting depth added 18). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":86}}}],"partialFingerprints":{"codehealthFindingId/v1":"a40a6b02b4b2857d0ad8ef1d3d19268d955c31aca20cd56c4e5555db304f441a"}},{"ruleId":"D2","level":"warning","message":{"text":"ManyToManyWithAssociationTableConfigurer.buildReverseCombiner (cognitive 28): ManyToManyWithAssociationTableConfigurer.buildReverseCombiner has cognitive complexity 28 (threshold 15). Drivers by points: if/else 27, boolean chains 1 (nesting depth added 14). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java"},"region":{"startLine":192}}}],"partialFingerprints":{"codehealthFindingId/v1":"e9bffa2bae495012a1e5f5d73e222c41b4e3fcd3fb90aec2672d65eb13be9a60"}},{"ruleId":"D2","level":"warning","message":{"text":"1.apply (cognitive 26): 1.apply has cognitive complexity 26 (threshold 15). Drivers by points: if/else 22, ternaries 4 (nesting depth added 15). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/EntityTreeInflater.java"},"region":{"startLine":116}}}],"partialFingerprints":{"codehealthFindingId/v1":"3e33e75bad780b3368705ef06ab56688b058f025057cdf3c5dad16e859cd3a48"}},{"ruleId":"D2","level":"warning","message":{"text":"ColumnedMapMapping.getUpdateValues (cognitive 26): ColumnedMapMapping.getUpdateValues has cognitive complexity 26 (threshold 15). Drivers by points: loops 10, if/else 8, ternaries 6, boolean chains 2 (nesting depth added 13). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/ColumnedMapMapping.java"},"region":{"startLine":88}}}],"partialFingerprints":{"codehealthFindingId/v1":"6b590c67e830075093890e12ada28f56f5b5cd0e7f11e7572782056a74a788c1"}},{"ruleId":"D2","level":"warning","message":{"text":"ManyToOneMetadataResolver.buildReverseCombiner (cognitive 25): ManyToOneMetadataResolver.buildReverseCombiner has cognitive complexity 25 (threshold 15). Drivers by points: if/else 24, boolean chains 1 (nesting depth added 13). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToOneMetadataResolver.java"},"region":{"startLine":229}}}],"partialFingerprints":{"codehealthFindingId/v1":"1418f6436a4f40e1bd6e4c2468a666a927d906df61020c2ed56baa48986ff15b"}},{"ruleId":"D2","level":"warning","message":{"text":"OneToManyOwnedByTargetHelper.determineForeignKeyColumns (cognitive 25): OneToManyOwnedByTargetHelper.determineForeignKeyColumns has cognitive complexity 25 (threshold 15). Drivers by points: if/else 17, ternaries 6, boolean chains 2 (nesting depth added 9). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":207}}}],"partialFingerprints":{"codehealthFindingId/v1":"eb74d4ee7db33fc10f6453908314bc5f70b95f9d3d553237c8813d3674da06dc"}},{"ruleId":"D2","level":"warning","message":{"text":"ManyToOneConfigurer.buildReverseCombiner (cognitive 25): ManyToOneConfigurer.buildReverseCombiner has cognitive complexity 25 (threshold 15). Drivers by points: if/else 24, boolean chains 1 (nesting depth added 13). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java"},"region":{"startLine":138}}}],"partialFingerprints":{"codehealthFindingId/v1":"966686cafc88b5ddbb35a3ca4ebd66fa83965219a6bc1be3df2485c7b8172736"}},{"ruleId":"D2","level":"warning","message":{"text":"OneToManyWithMappedAssociationConfigurer.determineForeignKeyColumns (cognitive 25): OneToManyWithMappedAssociationConfigurer.determineForeignKeyColumns has cognitive complexity 25 (threshold 15). Drivers by points: if/else 17, ternaries 6, boolean chains 2 (nesting depth added 9). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java"},"region":{"startLine":84}}}],"partialFingerprints":{"codehealthFindingId/v1":"9cf7270badef7805896c98e796c1d49a4f4ad91afdb50761865cf2c05ed6b43a"}},{"ruleId":"D2","level":"warning","message":{"text":"IdentifierManagerStep.determineIdentifierManager (cognitive 21): IdentifierManagerStep.determineIdentifierManager has cognitive complexity 21 (threshold 15). Drivers by points: if/else 21 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentifierManagerStep.java"},"region":{"startLine":62}}}],"partialFingerprints":{"codehealthFindingId/v1":"d33189441cbd85ac7aafd55d883bd69be95d4a1832b9891ff828d389c3c44919"}},{"ruleId":"D2","level":"warning","message":{"text":"AbstractDerivedQuery.convertToCriterion (cognitive 21): AbstractDerivedQuery.convertToCriterion has cognitive complexity 21 (threshold 15). Drivers by points: if/else 18, boolean chains 2, match/switch 1 (nesting depth added 6). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/derivation/AbstractDerivedQuery.java"},"region":{"startLine":43}}}],"partialFingerprints":{"codehealthFindingId/v1":"bd97ca1aca82bc3f61a7861147d2b91bba5a97862b90c6e8acf7c6eed78bb645"}},{"ruleId":"D2","level":"warning","message":{"text":"AggregateResolver.collectTables (cognitive 19): AggregateResolver.collectTables has cognitive complexity 19 (threshold 15). Drivers by points: if/else 18, loops 1 (nesting depth added 9). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/AggregateResolver.java"},"region":{"startLine":400}}}],"partialFingerprints":{"codehealthFindingId/v1":"81b56556031e4c28b0c196bac1641c8b53f9bc6a4e28e41e2d6e893996f8e80c"}},{"ruleId":"D2","level":"warning","message":{"text":"EmbeddedClassMapping.getUpdateValues (cognitive 19): EmbeddedClassMapping.getUpdateValues has cognitive complexity 19 (threshold 15). Drivers by points: if/else 11, boolean chains 5, loops 2, ternaries 1 (nesting depth added 2). To reduce it, split the body: this score is breadth rather than depth \u2014 many checks laid out side by side rather than nested inside one another, so inverting conditions into early returns has nothing left to flatten. Group the statements between the checks into named steps and move each step into its own function, so the body reads as a short sequence of named stages."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/EmbeddedClassMapping.java"},"region":{"startLine":251}}}],"partialFingerprints":{"codehealthFindingId/v1":"6fea91c5459616f7d5adbe85dceb45ab96154d86aeab65b3e1c500cfd953b308"}},{"ruleId":"D2","level":"warning","message":{"text":"DefaultEntityMapping.getUpdateValues (cognitive 18): DefaultEntityMapping.getUpdateValues has cognitive complexity 18 (threshold 15). Drivers by points: if/else 7, loops 7, ternaries 3, boolean chains 1 (nesting depth added 10). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/DefaultEntityMapping.java"},"region":{"startLine":292}}}],"partialFingerprints":{"codehealthFindingId/v1":"451885d9762916cfd69e652f548411304679ebf9fcf13932e3da8c2e48ce392e"}},{"ruleId":"D2","level":"warning","message":{"text":"CollectionUpdater.set (cognitive 16): CollectionUpdater.set has cognitive complexity 16 (threshold 15). Drivers by points: match/switch 5, if/else 4, loops 4, boolean chains 3 (nesting depth added 7). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/CollectionUpdater.java"},"region":{"startLine":99}}}],"partialFingerprints":{"codehealthFindingId/v1":"81242c0e57b557ba9205763bc90140a8dc1650c67390d82fcfa8206a776b08c4"}},{"ruleId":"D2","level":"warning","message":{"text":"EntryMapResolver.resolve (cognitive 16): EntryMapResolver.resolve has cognitive complexity 16 (threshold 15). Drivers by points: if/else 11, ternaries 4, boolean chains 1 (nesting depth added 4). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/EntryMapResolver.java"},"region":{"startLine":80}}}],"partialFingerprints":{"codehealthFindingId/v1":"000e4e6cbe90422214a7f26079dc059a48d8aea2c7d0eadb32655cc881b570df"}},{"ruleId":"D2","level":"warning","message":{"text":"ColumnedCollectionMapping.getUpdateValues (cognitive 16): ColumnedCollectionMapping.getUpdateValues has cognitive complexity 16 (threshold 15). Drivers by points: if/else 6, loops 6, boolean chains 2, ternaries 2 (nesting depth added 6). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/ColumnedCollectionMapping.java"},"region":{"startLine":94}}}],"partialFingerprints":{"codehealthFindingId/v1":"d68c4b10cb946483552ca993dbfd17f2ee1444e48703adfc64448caa1e1aff26"}},{"ruleId":"D2","level":"warning","message":{"text":"ZonedDateTimeMapping.getUpdateValues (cognitive 16): ZonedDateTimeMapping.getUpdateValues has cognitive complexity 16 (threshold 15). Drivers by points: if/else 9, ternaries 4, loops 2, boolean chains 1 (nesting depth added 5). To reduce it, split the body into named stages: move each independent step or branch into its own named function so the body reads as a short sequence of named calls rather than one long body."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/ZonedDateTimeMapping.java"},"region":{"startLine":95}}}],"partialFingerprints":{"codehealthFindingId/v1":"2a2c19188bb987cd4dec8709e70ec5b3d8f8150ac3e297a567a8bd7a1c247f0d"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: NoopResultSet: TooManyMethods \u2014 192 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"sql/src/main/java/org/codefilarete/stalactite/sql/result/NoopResultSet.java"},"region":{"startLine":31}}}],"partialFingerprints":{"codehealthFindingId/v1":"44536bdd43ee8003121e613b6d1fed996d07683e0f229798b2090ab280f89d1c"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: NoopPreparedStatement: TooManyMethods \u2014 98 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"sql/src/main/java/org/codefilarete/stalactite/sql/result/NoopPreparedStatement.java"},"region":{"startLine":32}}}],"partialFingerprints":{"codehealthFindingId/v1":"f15bdc3c62dee43a7ad4b536bf956e0877caf98eac0ea84b2ee9bf46979b7b67"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: FluentEntityMappingConfigurationSupport: TooManyMethods \u2014 92 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java"},"region":{"startLine":95}}}],"partialFingerprints":{"codehealthFindingId/v1":"10e1309b21bcd4d1d5b95f73608f4182f947c4949b4afc929227ff9a4d626656"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: FluentEmbeddableMappingConfigurationSupport: TooManyMethods \u2014 56 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":58}}}],"partialFingerprints":{"codehealthFindingId/v1":"82443858240b77ad2518849281a02fd24a767b99b06462cfd957a9bc20225809"}},{"ruleId":"D3","level":"warning","message":{"text":"FileTooLong: entity/FluentEntityMappingConfigurationSupport.java: FileTooLong \u2014 921 significant lines (blank, comment-only and punctuation-only lines excluded)."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"fa8863b885603df71b6de0dd9ffd6ed320fc85ff01bd6412e37a26833dd521fb"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: DelegatingConfiguredPersister: TooManyMethods \u2014 51 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/DelegatingConfiguredPersister.java"},"region":{"startLine":40}}}],"partialFingerprints":{"codehealthFindingId/v1":"55902279a4b50ac51bdfdfced93186eedc849bd95fc901faa8ac75295c6e28d0"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: MapRelation: TooManyMethods \u2014 50 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapRelation.java"},"region":{"startLine":33}}}],"partialFingerprints":{"codehealthFindingId/v1":"d5f05bb352792960fed0310ed17bd2abaac2a0c11a3d72c3f2c9e19f7848d6db"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: FluentQuery: TooManyMethods \u2014 47 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/query/model/FluentQuery.java"},"region":{"startLine":53}}}],"partialFingerprints":{"codehealthFindingId/v1":"8845334481d511f866c4d174bfff32bc25ce65e01edf515904df8b93e0e4dd49"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: OneToManyRelation: TooManyMethods \u2014 41 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyRelation.java"},"region":{"startLine":37}}}],"partialFingerprints":{"codehealthFindingId/v1":"db5b1ac43f5a67272cea0d6e70a8a0367a14c264ae10ef24cbab222cff29fcda"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: PersistenceContext: TooManyMethods \u2014 40 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/engine/PersistenceContext.java"},"region":{"startLine":73}}}],"partialFingerprints":{"codehealthFindingId/v1":"e0f79f5712f5c3641ccdec721f2711c50ea1be41b354ba7106716db66cfc1d9c"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: DefaultEntityMapping: TooManyMethods \u2014 38 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/DefaultEntityMapping.java"},"region":{"startLine":53}}}],"partialFingerprints":{"codehealthFindingId/v1":"189b7289b6cbfbb3b1070359bf7e345ce5e71ad8d75c21b54b5610a9c145d57b"}},{"ruleId":"D3","level":"warning","message":{"text":"FileTooLong: embeddable/FluentEmbeddableMappingConfigurationSupport.java: FileTooLong \u2014 599 significant lines (blank, comment-only and punctuation-only lines excluded)."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"7040e6891ab14998d08bbcf71d4ff2bdef9a5fa77fc78ed0e4cbbb4257e0b9f6"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: Table: TooManyMethods \u2014 35 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/ddl/structure/Table.java"},"region":{"startLine":35}}}],"partialFingerprints":{"codehealthFindingId/v1":"d9f4c294dd7f784912602a099870c24b3bb8c8f36a21fe8a88515f24ea8ae5ee"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: QueryMapper: TooManyMethods \u2014 34 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/engine/QueryMapper.java"},"region":{"startLine":54}}}],"partialFingerprints":{"codehealthFindingId/v1":"5098a6022033b9d8d959657343be2a21a2d5d07307c85fb1a8dc2547f2212bd9"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: ElementCollectionRelation: TooManyMethods \u2014 34 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelation.java"},"region":{"startLine":32}}}],"partialFingerprints":{"codehealthFindingId/v1":"98134b1ca398a82bb7ae914cb7b538b03f4ad1b5e26513539cc425fb74d77519"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: From: TooManyMethods \u2014 33 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/query/model/From.java"},"region":{"startLine":28}}}],"partialFingerprints":{"codehealthFindingId/v1":"7c117fb80ae7c7e66733b4701af52ff6d8f191be96de82d7e62e604913d04702"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: PersisterWrapper: TooManyMethods \u2014 32 methods."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/PersisterWrapper.java"},"region":{"startLine":33}}}],"partialFingerprints":{"codehealthFindingId/v1":"c6543d51f352835d8b96b6971f3a0b9f901eecf4030269c0b0ddb14277fbb863"}},{"ruleId":"D3","level":"warning","message":{"text":"FileTooLong: result/NoopResultSet.java: FileTooLong \u2014 502 significant lines (blank, comment-only and punctuation-only lines excluded)."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"sql/src/main/java/org/codefilarete/stalactite/sql/result/NoopResultSet.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"8e4aaee992e04cf1d794cef62c527e3ff6348cf20b9abf8c42492afd12de13ae"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (24 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:172-195 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:64-87 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java"},"region":{"startLine":172}}}],"partialFingerprints":{"codehealthFindingId/v1":"468e3877f83ac20a2c711d53da10cdb94fa01c8325430c1c2b96781e130928b5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (22 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java:180-201 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithMappedAssociationEngine.java:133-154 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java"},"region":{"startLine":180}}}],"partialFingerprints":{"codehealthFindingId/v1":"8a487a149226294f8069df165ff80ed63791c840bb3f0b9765b945fb0882cd72"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (21 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapRelationConfigurer.java:241-262 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/EntryMapResolver.java:163-183 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapRelationConfigurer.java"},"region":{"startLine":241}}}],"partialFingerprints":{"codehealthFindingId/v1":"f7c9bf44a014ddaa5f735b25595e24a7b6e5080b758216ae0006f319296d263a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (21 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java:265-285 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithIndexedAssociationTableAppender.java:119-139 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java"},"region":{"startLine":265}}}],"partialFingerprints":{"codehealthFindingId/v1":"4173bbeb8f31269fe5d811c5f27ec04b7137aac990acf2d90e9caa44d7ca06c8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (20 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedAssociationTableEngine.java:249-268 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithIndexedAssociationTableEngine.java:142-161 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedAssociationTableEngine.java"},"region":{"startLine":249}}}],"partialFingerprints":{"codehealthFindingId/v1":"e58447ca542dbc3cecd34c2fddb145737eb98e6493e7e0d7f6e7ec4f2b439d54"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (20 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytoone/AggregateManyToOneAppender.java:87-106 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/AggregateOneToOneAppender.java:111-130 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytoone/AggregateManyToOneAppender.java"},"region":{"startLine":87}}}],"partialFingerprints":{"codehealthFindingId/v1":"4cc58f41a0a348c99dcdc9aad4a0cba1c285ebd1fc6cb2fccd93b1fa7f7058b1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (19 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:100-118 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:101-119 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":100}}}],"partialFingerprints":{"codehealthFindingId/v1":"9140c9bafc9a77699593ce64065d31deb61fb70b3646ec24f778311bff69402d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (19 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:210-228 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:211-229 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":210}}}],"partialFingerprints":{"codehealthFindingId/v1":"f192612e6e9497ac3cc4f4e3ee07317c354074f525741ad41049d4c325908c78"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (19 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:83-101 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:581-599 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java"},"region":{"startLine":83}}}],"partialFingerprints":{"codehealthFindingId/v1":"c795baa96602fef279a74b467cdfbf9e397ebe8c70dc55a5546a7dba7e0eb8cb"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (18 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java:694-711 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:687-704 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:246-263 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":694}}}],"partialFingerprints":{"codehealthFindingId/v1":"d1aa8c5b7e29c1f7458f26894b6e0a8d554489529c3db9fabee27979f6dd4ceb"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (18 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java:180-197 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithAssociationTableEngine.java:121-138 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java"},"region":{"startLine":180}}}],"partialFingerprints":{"codehealthFindingId/v1":"78120149a4abc27a005dc5ce715e7ea7dcfa22a5cb982c0e703a27b1a711525c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (18 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:876-893 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:405-422 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java"},"region":{"startLine":876}}}],"partialFingerprints":{"codehealthFindingId/v1":"eb309cb4a6b1b4bc8d0d11de216c78e33cbfdb4eef9e471e56751d77dc7cd1ab"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (17 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentCompositeKeyMappingConfigurationSupport.java:168-184 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentCompositeKeyMappingConfigurationSupport.java:220-236 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentCompositeKeyMappingConfigurationSupport.java"},"region":{"startLine":168}}}],"partialFingerprints":{"codehealthFindingId/v1":"e6b782c74abbe5ca7d79636ba21dfb6f2a9bb1e058411f84b388ecf61cdb9ac0"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (16 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java:738-753 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:731-746 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:290-305 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":738}}}],"partialFingerprints":{"codehealthFindingId/v1":"11b443ca7689d052fcc685fdce3540cf90d1a16e675139ac80f1ca510615a054"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (15 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java:774-788 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:767-782 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:326-340 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":774}}}],"partialFingerprints":{"codehealthFindingId/v1":"3835121e491d935cc6e7067bb2a278bec6cc426d93578ff23ba06551b0205df6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (15 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java:299-313 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:1087-1101 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":299}}}],"partialFingerprints":{"codehealthFindingId/v1":"a861ec4e3531b6243ac06fe9cf139b8a4ac1bdac9031ce2f38b942b605cfbbd2"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java:235-248 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithMappedAssociationEngine.java:188-201 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java"},"region":{"startLine":235}}}],"partialFingerprints":{"codehealthFindingId/v1":"879c7f7b240e8189f24f386614a29c96855f83355a32e56830e6cf7073a2de51"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:350-363 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:326-339 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":350}}}],"partialFingerprints":{"codehealthFindingId/v1":"723c57859c7613771d8f7a146d067be001dbb64bab3bb00bbc7c01c20522e344"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java:300-314 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithAssociationTableConfigurer.java:110-123 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java"},"region":{"startLine":300}}}],"partialFingerprints":{"codehealthFindingId/v1":"c4bf30d1340d621f32daf2c44741a2fba24cd03deb274722310878a8196fdf27"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java:300-313 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneConfigurerTemplate.java:170-183 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java"},"region":{"startLine":300}}}],"partialFingerprints":{"codehealthFindingId/v1":"64b11de41e8a89128684fbe229e11dd5f6a4437477aa6cf497f9b66ae78037f6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java:100-113 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/MapEntryLoader.java:111-124 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java"},"region":{"startLine":100}}}],"partialFingerprints":{"codehealthFindingId/v1":"488be0ad015d93ab0a591a7094a132d8b8bd53020c042e6da3f0ae856d3096c8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java:119-132 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyResolver.java:149-162 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java"},"region":{"startLine":119}}}],"partialFingerprints":{"codehealthFindingId/v1":"7c880a4a7790e8f5db8a541196b86fbc2cad232b7007b67d1840270c8cc89bf8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java:166-179 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyResolver.java:186-199 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java"},"region":{"startLine":166}}}],"partialFingerprints":{"codehealthFindingId/v1":"6538d7a72e678349d9ac8674337763fa5bd7906dd016409c764e379ad4402abb"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (14 lines \u00D7 2): spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/BeanRepositoryQuery.java:86-99 | spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/QueryRepositoryQuery.java:90-103 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/BeanRepositoryQuery.java"},"region":{"startLine":86}}}],"partialFingerprints":{"codehealthFindingId/v1":"fedf5e6fe17e7aa8712b393e5c382d32144b5730d026d7a28c123dc15af1dd23"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 4): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java:93-105 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedAssociationTableEngine.java:79-91 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:81-93 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java:142-154 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java"},"region":{"startLine":93}}}],"partialFingerprints":{"codehealthFindingId/v1":"02e115571fabd89c7cca12c1a96739ba3ee65d3f84d91dd4069567075ed9ba6a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/ManyToManyCycleLoader.java:46-58 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/OneToManyCycleLoader.java:46-58 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/ManyToManyCycleLoader.java"},"region":{"startLine":46}}}],"partialFingerprints":{"codehealthFindingId/v1":"e8eb4822c178cb37376276c8febae9c8fe21c027c7158fa871555a677dbe56dc"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java:252-264 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java:301-313 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java"},"region":{"startLine":252}}}],"partialFingerprints":{"codehealthFindingId/v1":"5b7471da160f5088463ce8cb25d065410b23c0e052e365a0dfb13ff24ba504e5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:295-307 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:187-199 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java"},"region":{"startLine":295}}}],"partialFingerprints":{"codehealthFindingId/v1":"cc64098fbfe322d8ad86fb4a98552065a74c4d5e46dcabe3d52125e49f49679b"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:318-330 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:210-222 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java"},"region":{"startLine":318}}}],"partialFingerprints":{"codehealthFindingId/v1":"2f29313665f36111cef06647cef9ecd7e254bf352623caab61c5105aafa38f56"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:257-269 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:258-270 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":257}}}],"partialFingerprints":{"codehealthFindingId/v1":"495fca36bacdb95afc1c5e99fd53a3274f07c7886f1920f32af2e4688c1c364b"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ElementCollectionMetadataResolver.java:226-238 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelationConfigurer.java:191-203 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ElementCollectionMetadataResolver.java"},"region":{"startLine":226}}}],"partialFingerprints":{"codehealthFindingId/v1":"612fb0119e1e38cd9f31f94cd16f605f0ad6a33e91816a00ee65574a13597b94"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToOneMetadataResolver.java:247-259 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java:157-169 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToOneMetadataResolver.java"},"region":{"startLine":247}}}],"partialFingerprints":{"codehealthFindingId/v1":"cf42997f91bc522154588fa73e4b633405347e0241d8ee86c0db37d8f9a59bce"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:125-137 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:623-635 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java"},"region":{"startLine":125}}}],"partialFingerprints":{"codehealthFindingId/v1":"ce04a4cf46ea1607f67dc17c0bfa9b381463f351becf1cb173851aece389336d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:1174-1186 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:496-508 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java"},"region":{"startLine":1174}}}],"partialFingerprints":{"codehealthFindingId/v1":"eae8ba7939badd6a8bf2c3a2803d539352102075e9e3d0b2f7e68e1fc397daca"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java:120-132 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:119-131 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java"},"region":{"startLine":120}}}],"partialFingerprints":{"codehealthFindingId/v1":"f35446c4d2ab71cb9d4eab03e2b92c68640e0359d02f7b73e85e9624556db019"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (13 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java:89-101 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithMappedAssociationAppender.java:86-98 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java"},"region":{"startLine":89}}}],"partialFingerprints":{"codehealthFindingId/v1":"f1fdd1d69fe15a04e26bce77eb2be08ddb06bed2b524ae6bd0c6ab646bf90965"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 4): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/manytoone/ManyToOneEngine.java:103-114 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java:93-104 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytoone/ManyToOneEngine.java:104-115 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedBySourceEngine.java:94-105 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/manytoone/ManyToOneEngine.java"},"region":{"startLine":103}}}],"partialFingerprints":{"codehealthFindingId/v1":"0423062dccb352bb0395d2501c6b678e8bdccdb7b0209670d4eb41ef7f237e38"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelation.java:244-255 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelation.java:202-213 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyRelation.java:293-304 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelation.java"},"region":{"startLine":244}}}],"partialFingerprints":{"codehealthFindingId/v1":"606f830eafabfe928e6dab367a5bb716378ebf72d5e5620bcb1c85a54649fb0c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java:141-152 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java:140-151 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:139-150 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java"},"region":{"startLine":141}}}],"partialFingerprints":{"codehealthFindingId/v1":"d6ad416d64f987364a6c6234bf64d20bc3e06fb2e17ec3de75c38d9c9be920e1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): sql-adapter/sql-mariadb-adapter/src/main/java/org/codefilarete/stalactite/sql/mariadb/statement/binder/MariaDBTypeMapping.java:20-31 | sql-adapter/sql-mysql-adapter/src/main/java/org/codefilarete/stalactite/sql/mysql/statement/binder/MySQLTypeMapping.java:20-31 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"sql-adapter/sql-mariadb-adapter/src/main/java/org/codefilarete/stalactite/sql/mariadb/statement/binder/MariaDBTypeMapping.java"},"region":{"startLine":20}}}],"partialFingerprints":{"codehealthFindingId/v1":"e0bb4a135db1036658db9063d4171e429a22591e90211925a8c6ae1ecd05675e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java:96-107 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithMappedAssociationEngine.java:83-94 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java"},"region":{"startLine":96}}}],"partialFingerprints":{"codehealthFindingId/v1":"8512c8af1b6032e67946efe0e6d5f2d58da894c5028523426ac39c7095388db9"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java:292-304 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java:235-246 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java"},"region":{"startLine":292}}}],"partialFingerprints":{"codehealthFindingId/v1":"4faf23aec3b252b4c2158d7abab99e1af24d0a1f1a1a0c94798ce49460520191"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java:491-502 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:136-147 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java"},"region":{"startLine":491}}}],"partialFingerprints":{"codehealthFindingId/v1":"984558defd175d13d9c185de802d84e4f656256cdc4e74ef1189f154cd65fca7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java:157-168 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:156-167 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java"},"region":{"startLine":157}}}],"partialFingerprints":{"codehealthFindingId/v1":"051cea8001bcf02d9703248ccc00c3e7b9394d093a051006a79036464c9af4e5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java:337-349 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithIndexedAssociationTableAppender.java:192-203 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java"},"region":{"startLine":337}}}],"partialFingerprints":{"codehealthFindingId/v1":"d7e8a469242e87eaed6a930c6ba69da158cff7bca54140f0202d749daedd2d3e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/AggregateMapAppender.java:83-95 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/AggregateMapAppender.java:114-125 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/AggregateMapAppender.java"},"region":{"startLine":83}}}],"partialFingerprints":{"codehealthFindingId/v1":"85c12e7ba562a06e075afc4d9268664d34e01657f389beb452687d32fb08117d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (12 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithIndexedAssociationTableAppender.java:164-175 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithIndexedMappedAssociationAppender.java:122-133 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithIndexedAssociationTableAppender.java"},"region":{"startLine":164}}}],"partialFingerprints":{"codehealthFindingId/v1":"fff597731d64b898c458864ae54deacdb52582d812c50da6e73b7f01162a90f7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingConfiguration.java:127-137 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingConfiguration.java:203-213 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingConfiguration.java"},"region":{"startLine":127}}}],"partialFingerprints":{"codehealthFindingId/v1":"2d713b2ac411aab13cd02905fdee928ecead19e38ee2c741c659ea9286cf3e04"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java:263-273 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java:208-218 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java"},"region":{"startLine":263}}}],"partialFingerprints":{"codehealthFindingId/v1":"6afe19664c4e3b10bad013e1cd58e9c499a11a5af8d9593192ae97070122ec7b"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToOneMetadataResolver.java:173-183 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToOneMetadataResolver.java:220-230 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToOneMetadataResolver.java"},"region":{"startLine":173}}}],"partialFingerprints":{"codehealthFindingId/v1":"5488367fa76b502255c4b75927c689050fa854473b6ccf11af77449d9192c458"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToOneMetadataResolver.java:140-150 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneOwnedByTargetConfigurer.java:186-196 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToOneMetadataResolver.java"},"region":{"startLine":140}}}],"partialFingerprints":{"codehealthFindingId/v1":"8f2c4906b417551489526ae2efa1f8106bf21bae2fb051f885dbc66d3326cdba"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyAssociationConfiguration.java:143-153 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneRelation.java:150-160 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyAssociationConfiguration.java"},"region":{"startLine":143}}}],"partialFingerprints":{"codehealthFindingId/v1":"987c1fe6fe4f44c782e8e3d6b891554ed06990fc823e5630093f3ff3e6e55e0e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneRelationConfigurer.java:65-75 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneRelationConfigurer.java:75-85 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneRelationConfigurer.java"},"region":{"startLine":65}}}],"partialFingerprints":{"codehealthFindingId/v1":"ce01f9b267bc253ee49244c262147ff48409a574d5d34a50e8361b35879a6669"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java:207-217 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:206-216 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java"},"region":{"startLine":207}}}],"partialFingerprints":{"codehealthFindingId/v1":"54f34a2b98e3c5dd9fdc19c6824f2db26228ee256dec374875226d155ab4a463"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OrphanRemovalOnUpdate.java:27-37 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/OrphanRemovalOnUpdate.java:27-37 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OrphanRemovalOnUpdate.java"},"region":{"startLine":27}}}],"partialFingerprints":{"codehealthFindingId/v1":"6f776939c5f84419d8bb73086957e1f61908d03799dfd6056b2aab54f75b95fd"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java:155-166 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithAssociationTableAppender.java:62-72 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/AggregateManyToManyAppender.java"},"region":{"startLine":155}}}],"partialFingerprints":{"codehealthFindingId/v1":"2021a205af24cc5910ebde372494cfb47a51cc29f36b968428c6fa090395b8df"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/AggregateMapAppender.java:240-250 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/AggregateMapAppender.java:277-287 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/AggregateMapAppender.java"},"region":{"startLine":240}}}],"partialFingerprints":{"codehealthFindingId/v1":"e0892c230bab4128a08c357997f468a69b0de13dd1fc4e33c3b9ed95e5bdb50b"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/mapping/ColumnedCollectionMapping.java:116-127 | core/src/main/java/org/codefilarete/stalactite/mapping/ColumnedMapMapping.java:115-125 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/ColumnedCollectionMapping.java"},"region":{"startLine":116}}}],"partialFingerprints":{"codehealthFindingId/v1":"ab2ca8f9c5f8acb8bee4710c0d8e53267a9f2ec9aaebd4493ffbcc61a34916e5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/reduce/QueryResultStreamer.java:52-62 | spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/reduce/SliceResultWindower.java:40-50 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/reduce/QueryResultStreamer.java"},"region":{"startLine":52}}}],"partialFingerprints":{"codehealthFindingId/v1":"92ec09c8445388e93eff6ddc73fd6187e36b5804b5da1a3210981f3d1e482775"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementRecordMapping.java:149-158 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementRecordMapping.java:206-215 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/IndexedElementRecordMapping.java:209-218 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementRecordMapping.java"},"region":{"startLine":149}}}],"partialFingerprints":{"codehealthFindingId/v1":"c79a9348607590f758cf418c500202bd1cec0ac1f1886befea4eccf6075ef5ee"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/JoinTablePolymorphicRelationJoinNode.java:99-108 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/TablePerClassPolymorphicRelationJoinNode.java:160-173 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/JoinTablePolymorphicRelationJoinNode.java"},"region":{"startLine":99}}}],"partialFingerprints":{"codehealthFindingId/v1":"7469d8ef5b0e74b33e159073fd46736e10caada00fd4987e5ca0cd1c950c7b84"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/manytoone/ManyToOneEngine.java:51-60 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytoone/ManyToOneEngine.java:52-61 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/manytoone/ManyToOneEngine.java"},"region":{"startLine":51}}}],"partialFingerprints":{"codehealthFindingId/v1":"f1224370ffc6e48804b262679dd010f56916af6f0d9b8b7959c291dfad5e9a62"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/IndexedAssociationTableManyRelationDescriptor.java:128-137 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/IndexedAssociationTableManyRelationDescriptor.java:128-137 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/IndexedAssociationTableManyRelationDescriptor.java"},"region":{"startLine":128}}}],"partialFingerprints":{"codehealthFindingId/v1":"c204bf9c43c445ebd3e358253f1353df5517b1f636d799b6ec355480b17bb591"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/IndexedMappedManyRelationDescriptor.java:124-133 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/IndexedMappedManyRelationDescriptor.java:124-133 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/IndexedMappedManyRelationDescriptor.java"},"region":{"startLine":124}}}],"partialFingerprints":{"codehealthFindingId/v1":"6a5d4753858503da1020c99bef6269e2dfb548c272b7fb7f81a67a1deb3d2000"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java:211-220 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithAssociationTableEngine.java:152-161 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java"},"region":{"startLine":211}}}],"partialFingerprints":{"codehealthFindingId/v1":"bafb88fcfc6f74176ae55a5b612582bef62a31c7c3c252f4cb6af5fe39c2d045"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java:231-240 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithAssociationTableEngine.java:172-181 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithAssociationTableEngine.java"},"region":{"startLine":231}}}],"partialFingerprints":{"codehealthFindingId/v1":"880b5dbe72a6226327a7b974c6fce0c839dae759e3432db36ad5d29b3110986f"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java:41-50 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedBySourceEngine.java:42-51 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java"},"region":{"startLine":41}}}],"partialFingerprints":{"codehealthFindingId/v1":"afdaf4be12336b2e420b69bcc45cb0d674d96f95e56bf552fa3469666ef7b411"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:148-157 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:149-158 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":148}}}],"partialFingerprints":{"codehealthFindingId/v1":"907faec5b3daf2e384b85180e0f7f43fb0067c80dc24201be4421aba95fd5518"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:329-338 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:306-315 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":329}}}],"partialFingerprints":{"codehealthFindingId/v1":"7d39df55089382fb7dbfa185342d7eaf3694b20886c1ba58f6d355fd57eff8e9"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneConfigurerTemplate.java:61-70 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneConfigurerTemplate.java:79-88 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneConfigurerTemplate.java"},"region":{"startLine":61}}}],"partialFingerprints":{"codehealthFindingId/v1":"702e46636582c9bbf703aa20f524ce39645575a281eb22a508b332e6a8dcd289"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyAppender.java:49-58 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyWithMappedAssociationAppender.java:90-99 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/AggregateOneToManyAppender.java"},"region":{"startLine":49}}}],"partialFingerprints":{"codehealthFindingId/v1":"df6f8935887f83781f90b97d2fb65862900ffedb85bbf9e1695d091849c5e694"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/reduce/QueryResultStreamer.java:33-42 | spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/reduce/SliceResultWindower.java:22-31 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/reduce/QueryResultStreamer.java"},"region":{"startLine":33}}}],"partialFingerprints":{"codehealthFindingId/v1":"916190eebd5124fad5df5b85a3081f7dc2289665fc544e7d976e534ee44c941d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/ManyToOneCycleLoader.java:36-44 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/OneToOneCycleLoader.java:36-44 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/ManyToOneCycleLoader.java"},"region":{"startLine":36}}}],"partialFingerprints":{"codehealthFindingId/v1":"e92c6f846c06e2b89f04a70f31c6cebf73bf129de9390643973c43cab38d735a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java:192-200 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java:197-205 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java"},"region":{"startLine":192}}}],"partialFingerprints":{"codehealthFindingId/v1":"d139b895b7ee20c97c0c3ccb3df32b84bec3b474920873dd3a487814a2876319"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java:66-74 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedBySourceEngine.java:67-75 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java"},"region":{"startLine":66}}}],"partialFingerprints":{"codehealthFindingId/v1":"d6546faa19dcfbc383cf7d26c4e36c75e758ffcb5224554486ded2e3541b0401"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/projection/ProjectionQueryCriteriaSupport.java:127-135 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/query/EntityQueryCriteriaSupport.java:169-177 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/projection/ProjectionQueryCriteriaSupport.java"},"region":{"startLine":127}}}],"partialFingerprints":{"codehealthFindingId/v1":"851a7abf4b03037087c1dc6be5fb19811f2ce822e7be0930d42d2717f9572f86"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/SimpleRelationalEntityPersister.java:219-227 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/SimpleRelationalEntityPersister.java:266-274 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/SimpleRelationalEntityPersister.java"},"region":{"startLine":219}}}],"partialFingerprints":{"codehealthFindingId/v1":"008b052bb3804e70b3bd2f594197e25b286d98dfd3076449876ec0134afe57e1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:371-379 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:346-354 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":371}}}],"partialFingerprints":{"codehealthFindingId/v1":"5f6acc0bd78baf2f1487ad1827d6d64c93b8292e761e19cc40655b48b523f3a5"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentificationStep.java:76-84 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/IdentifierMappingBuilder.java:86-94 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentificationStep.java"},"region":{"startLine":76}}}],"partialFingerprints":{"codehealthFindingId/v1":"df9a88420bdc2cddf3331b13cdf94d1ad5fe05b75274847d11cf5d574e4740b4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/MainPersisterStep.java:239-247 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/VersioningStep.java:47-55 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/MainPersisterStep.java"},"region":{"startLine":239}}}],"partialFingerprints":{"codehealthFindingId/v1":"e0f45663baaf67258334c08905268429a5dcef5cbdf948800363213bd0493471"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ElementCollectionMetadataResolver.java:214-222 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelationConfigurer.java:179-187 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ElementCollectionMetadataResolver.java"},"region":{"startLine":214}}}],"partialFingerprints":{"codehealthFindingId/v1":"834369c425fd832b801d4e42a91c1f6e5cc556aac9921f33cc4ac52e2e7baefd"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java:117-125 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java:149-157 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":117}}}],"partialFingerprints":{"codehealthFindingId/v1":"5dcaa4a39022acb2b27debbc5882b3bbf457598e0e5bb3800c2a4fbc2b49c0a9"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java:249-257 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java:142-150 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":249}}}],"partialFingerprints":{"codehealthFindingId/v1":"000d1e3600e0cd301611a0962eb65ef15bab42d41a883b9027660c7d850d49d7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelation.java:216-224 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyRelation.java:307-315 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelation.java"},"region":{"startLine":216}}}],"partialFingerprints":{"codehealthFindingId/v1":"45494cb19988634060faecf21cf8da656ce7ade77e699c1be77190f618a37f47"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java:369-377 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithAssociationTableConfigurer.java:180-188 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyRelationConfigurer.java"},"region":{"startLine":369}}}],"partialFingerprints":{"codehealthFindingId/v1":"85543a2f63e0881e86e2152e4b520cc99ed8d0e24a4d52a1fdd298690a134d77"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java:323-331 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneOwnedBySourceConfigurer.java:111-119 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java"},"region":{"startLine":323}}}],"partialFingerprints":{"codehealthFindingId/v1":"6875532b3fe98b677efc86afc8794499f5efa176246dfab5fe56d3bf5e7a6970"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java:309-317 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:305-313 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java"},"region":{"startLine":309}}}],"partialFingerprints":{"codehealthFindingId/v1":"6443a459617b3d783d0b6fe5fb97c99c7bf480a7ba11b66ae677661cd6cf792a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:218-226 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapRelationConfigurer.java:174-182 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java"},"region":{"startLine":218}}}],"partialFingerprints":{"codehealthFindingId/v1":"f2dbfa844d0cf0398bf73ba3366e98944b83f546abf6dbcfb3647ea863bea1e1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java:127-135 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/MapEntryLoader.java:138-146 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java"},"region":{"startLine":127}}}],"partialFingerprints":{"codehealthFindingId/v1":"fa4e058244613b28c822ca302eca82ad174df503469dfcc8a258ba5476918e30"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java:164-172 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/MapEntryLoader.java:175-183 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java"},"region":{"startLine":164}}}],"partialFingerprints":{"codehealthFindingId/v1":"4cb069bee60490360ae1a6c8a36b9b60135a7f270fcb198ed90719a47347e4d3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/query/builder/ExpandableSQLAppender.java:119-127 | core/src/main/java/org/codefilarete/stalactite/query/builder/PreparedSQLAppender.java:69-77 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/query/builder/ExpandableSQLAppender.java"},"region":{"startLine":119}}}],"partialFingerprints":{"codehealthFindingId/v1":"a8d17f9fa5cffcba07da31cae94bf66ad31aa851a52d67945cd942fc275e7070"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/domain/DomainEntityQueryExecutor.java:73-81 | spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/projection/ProjectionQueryExecutor.java:86-94 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/domain/DomainEntityQueryExecutor.java"},"region":{"startLine":73}}}],"partialFingerprints":{"codehealthFindingId/v1":"8a05bd9bbf89cdeb2525a47f19d0d19c096b0288546821886bf80c3a4a554cb1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismEntityFinder.java:159-166 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismEntityFinder.java:164-175 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/tableperclass/TablePerClassPolymorphismEntityFinder.java:260-271 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismEntityFinder.java"},"region":{"startLine":159}}}],"partialFingerprints":{"codehealthFindingId/v1":"14876233f13d51e54fe546fd2c32273d14668cca08c066c329ad55ef231dae96"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java:125-132 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java:136-143 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/tableperclass/TablePerClassPolymorphismPersister.java:126-133 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java"},"region":{"startLine":125}}}],"partialFingerprints":{"codehealthFindingId/v1":"bceb6cc4d63101284bb55542ebf6cfb717d6d00a191431bdd7cf7af05a5e01b6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java:166-173 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java:173-180 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/tableperclass/TablePerClassPolymorphismPersister.java:160-167 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java"},"region":{"startLine":166}}}],"partialFingerprints":{"codehealthFindingId/v1":"bf5fc7281c9fbe87d042f572ee1f1ad13be45825cf12e66bb5c2f36fee514ff4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): sql-adapter/sql-derby-adapter/src/main/java/org/codefilarete/stalactite/sql/derby/statement/binder/DerbyTypeMapping.java:17-24 | sql-adapter/sql-hsqldb-adapter/src/main/java/org/codefilarete/stalactite/sql/hsqldb/statement/binder/HSQLDBTypeMapping.java:17-24 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"sql-adapter/sql-derby-adapter/src/main/java/org/codefilarete/stalactite/sql/derby/statement/binder/DerbyTypeMapping.java"},"region":{"startLine":17}}}],"partialFingerprints":{"codehealthFindingId/v1":"99b08fa4217359061473f2212ee933055d39f72373e8485fa0cd44981f6a0cb0"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java:113-120 | core/src/main/java/org/codefilarete/stalactite/sql/order/UpdateCommandBuilder.java:147-154 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java"},"region":{"startLine":113}}}],"partialFingerprints":{"codehealthFindingId/v1":"84ea82983633bea6f4edeca29fa930561f88cc807f3ad0df16bbff97cfdbc487"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java:189-196 | core/src/main/java/org/codefilarete/stalactite/sql/order/UpdateCommandBuilder.java:233-240 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java"},"region":{"startLine":189}}}],"partialFingerprints":{"codehealthFindingId/v1":"90e2fd251f2d52078e93d9706651aab4e59010c03ea649d72dee2baa065a9e42"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:249-256 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:141-148 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java"},"region":{"startLine":249}}}],"partialFingerprints":{"codehealthFindingId/v1":"0e5faa43656bbd349bc8c4c71894767be2d93df7e423cf190a31eb282ee5a45e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java:107-114 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedBySourceEngine.java:108-115 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedBySourceEngine.java"},"region":{"startLine":107}}}],"partialFingerprints":{"codehealthFindingId/v1":"505a69bd2c72dd3a76f17148ff567a543a233947dd038a46c86c90d53b5beaf9"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:240-247 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:241-248 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":240}}}],"partialFingerprints":{"codehealthFindingId/v1":"6285236c060cb7558129337595474c31301334e25f521e581d8c947d36002008"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:325-332 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:326-333 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":325}}}],"partialFingerprints":{"codehealthFindingId/v1":"a86ad68f1e78ea1a141b2059311fc5f1fde13f7881fd383cd75dea3f7cba81b3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/projection/ProjectionQueryPageSupport.java:102-109 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/query/EntityQueryCriteriaSupport.java:313-320 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/projection/ProjectionQueryPageSupport.java"},"region":{"startLine":102}}}],"partialFingerprints":{"codehealthFindingId/v1":"02bab4fdb1f9c71e5948840a396ddde1327cba9535bf9b2a7cdfcd3401a04159"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismEntityFinder.java:146-153 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/tableperclass/TablePerClassPolymorphismEntityFinder.java:230-238 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismEntityFinder.java"},"region":{"startLine":146}}}],"partialFingerprints":{"codehealthFindingId/v1":"a529edaf938d2d61f0e9aa673e6eadfdaab2e93e5018f4c67d63c2fca18bb56c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java:252-259 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java:293-301 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java"},"region":{"startLine":252}}}],"partialFingerprints":{"codehealthFindingId/v1":"fcb017e4b3d123fbd9f9cc2b66f0766d73fccf6b1ffe00c453c9e72916b6e557"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/engine/runtime/InsertExecutor.java:56-63 | core/src/main/java/org/codefilarete/stalactite/engine/runtime/UpdateExecutor.java:58-65 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/engine/runtime/InsertExecutor.java"},"region":{"startLine":56}}}],"partialFingerprints":{"codehealthFindingId/v1":"9775fc7c553a7790cccc23112795bfabd5914ffde0efa8df06a4c1f290ec6ab2"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:90-97 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:106-113 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":90}}}],"partialFingerprints":{"codehealthFindingId/v1":"658e62c39c664981a44c3d59ca5ad5ed6674bf6a1ea7bcbce2a45f9dd5defcd4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java:216-223 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java:91-98 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":216}}}],"partialFingerprints":{"codehealthFindingId/v1":"65e9bfbd918664ff1266c008d825429cb58d316493061226a9bd6d6b24bb8517"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:350-357 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:438-445 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java"},"region":{"startLine":350}}}],"partialFingerprints":{"codehealthFindingId/v1":"608de9e36be3ce7d9eeb4f1cf23014b9e067eb46fcb353a3d3dc67212950cd87"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java:334-341 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetoone/OneToOneOwnedBySourceConfigurer.java:122-129 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytoone/ManyToOneConfigurer.java"},"region":{"startLine":334}}}],"partialFingerprints":{"codehealthFindingId/v1":"4f791230bb4f7ac6d3680739692a38a985ee49b20b0f1b30fdbc9dc4cfe5b67e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java:100-107 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java:121-128 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyWithMappedAssociationConfigurer.java"},"region":{"startLine":100}}}],"partialFingerprints":{"codehealthFindingId/v1":"61c9ccad490881d974b53c6f4ce454daf3cf7c2ee9fe8f62ee756c397f598add"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/SkeletonAggregateResolver.java:217-224 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/SkeletonAggregateResolver.java:267-274 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/SkeletonAggregateResolver.java"},"region":{"startLine":217}}}],"partialFingerprints":{"codehealthFindingId/v1":"56680b7ccab30428111f5832374f952fa40aa6241c71fb38d714e3b4e7ea71a3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/dsl/naming/AssociationTableNamingStrategy.java:136-143 | orm/src/main/java/org/codefilarete/stalactite/dsl/naming/AssociationTableNamingStrategy.java:179-186 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/dsl/naming/AssociationTableNamingStrategy.java"},"region":{"startLine":136}}}],"partialFingerprints":{"codehealthFindingId/v1":"839bede21231165a5ef53382960668276504452010983e440cd2cabbcfa5d4f0"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/sql/ddl/structure/Column.java:40-46 | core/src/main/java/org/codefilarete/stalactite/sql/ddl/structure/Column.java:50-56 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/ddl/structure/Column.java"},"region":{"startLine":40}}}],"partialFingerprints":{"codehealthFindingId/v1":"52f5f84f1745eb814da33c8c4b46cc052168ddf973b8cbd1ae028f6610428525"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java:79-85 | core/src/main/java/org/codefilarete/stalactite/sql/order/UpdateCommandBuilder.java:72-78 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java"},"region":{"startLine":79}}}],"partialFingerprints":{"codehealthFindingId/v1":"b2fa8f332edc8626a488bd21c29ebc820d6f08d989310902a8d9f879bf268dab"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java:135-141 | core/src/main/java/org/codefilarete/stalactite/sql/order/UpdateCommandBuilder.java:174-180 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/order/DeleteCommandBuilder.java"},"region":{"startLine":135}}}],"partialFingerprints":{"codehealthFindingId/v1":"9f590799a91410794e6176da2e95a9e81fe92775f8f46f7bb70e6e996e75d4c8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/JoinTableRootJoinNode.java:62-68 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/TablePerClassRootJoinNode.java:65-71 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/JoinTableRootJoinNode.java"},"region":{"startLine":62}}}],"partialFingerprints":{"codehealthFindingId/v1":"116f21c3c0ca76cc4e87c6938b1a784e215d69b09554bbf1a3d08e544c33f849"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/ManyToOneCycleLoader.java:49-55 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/OneToOneCycleLoader.java:49-55 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/cycle/ManyToOneCycleLoader.java"},"region":{"startLine":49}}}],"partialFingerprints":{"codehealthFindingId/v1":"1188fba447b0cee49f6abf0382a24b502c89038138dfd962151d9f8d31f74314"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java:407-413 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithMappedAssociationEngine.java:323-329 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithMappedAssociationEngine.java"},"region":{"startLine":407}}}],"partialFingerprints":{"codehealthFindingId/v1":"b706f69d7a186ca0503b3d10a4c66ce1ce11924fafe3eee1e1ebccde21bd7772"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismEntityFinder.java:182-188 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/tableperclass/TablePerClassPolymorphismEntityFinder.java:278-284 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismEntityFinder.java"},"region":{"startLine":182}}}],"partialFingerprints":{"codehealthFindingId/v1":"95e7c2c5cdf4658993b989d67d19ea9ee2ad8be67b2fb0076bb719c615ef4e1f"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/cascade/AfterInsertCollectionCascader.java:51-57 | orm/src/main/java/org/codefilarete/stalactite/engine/cascade/BeforeInsertCollectionCascader.java:44-50 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/cascade/AfterInsertCollectionCascader.java"},"region":{"startLine":51}}}],"partialFingerprints":{"codehealthFindingId/v1":"d470578e8482b4803a81ca60708ec05406a0f2ae97900aff3e3af2fe4a7ce9da"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:278-284 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:242-248 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":278}}}],"partialFingerprints":{"codehealthFindingId/v1":"0e8a73a4119ac0485e399b2596287e44122127a69e7a5724f2978584c735c4ab"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentifierManagerStep.java:115-121 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/IdentifierMappingBuilder.java:105-111 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentifierManagerStep.java"},"region":{"startLine":115}}}],"partialFingerprints":{"codehealthFindingId/v1":"36bf2c2e9865e9986476961c734e03464daf331da3ee110d3f619e4d2e1d7c59"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java:322-328 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyAssociationConfiguration.java:139-145 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java"},"region":{"startLine":322}}}],"partialFingerprints":{"codehealthFindingId/v1":"e010b433e8e14b7cebc328ff1721d5c11ba9304e24716a4a5a8e5aa0caf01040"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:73-79 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:99-105 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java"},"region":{"startLine":73}}}],"partialFingerprints":{"codehealthFindingId/v1":"f9645aecbacb252dd8ea8defb6c4f48ffc3bfcfc7079255fd79cfde1a1419efa"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:82-88 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:108-114 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java"},"region":{"startLine":82}}}],"partialFingerprints":{"codehealthFindingId/v1":"5749ffb1c0ec522c7d287145581a7262e0b8316cee66216edaf5aa5b47c24bd2"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:305-311 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java:337-343 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/EntityDecoratedEmbeddableConfigurationSupport.java"},"region":{"startLine":305}}}],"partialFingerprints":{"codehealthFindingId/v1":"ff7400da3a42d92c6349fd4903f96d7e0a4b13e8b1326f7ca8226fbbeb0064c3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:517-523 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java:561-567 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java"},"region":{"startLine":517}}}],"partialFingerprints":{"codehealthFindingId/v1":"65522352cc8c1197bd6fe37ca21b74ea7098d340ff82efd43e495d732b2dd753"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java:302-308 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java:306-312 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java"},"region":{"startLine":302}}}],"partialFingerprints":{"codehealthFindingId/v1":"b704d2c0470693a126a7d594b040cab788e0ac8f404a77bc8b8b5ef2d1dc7ecd"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java:115-121 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/MapEntryLoader.java:126-132 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/elementcollection/ElementCollectionLoader.java"},"region":{"startLine":115}}}],"partialFingerprints":{"codehealthFindingId/v1":"479eedacc14cbebb0ca215474fdb1101c76295f402d91f556099d4b9d9f947e4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:169-176 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java:181-187 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/FluentSubEntityMappingConfigurationSupport.java"},"region":{"startLine":169}}}],"partialFingerprints":{"codehealthFindingId/v1":"bb874e6fb37b9f2ce5b13a546663ef62d36daa3a4c0e0e8ec19c1fa2d29077c4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/engine/PersistExecutor.java:103-109 | core/src/main/java/org/codefilarete/stalactite/engine/PersistExecutor.java:155-161 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/engine/PersistExecutor.java"},"region":{"startLine":103}}}],"partialFingerprints":{"codehealthFindingId/v1":"870431923ab3c2f5a200f540e73281b516d99c6a800da2d64635c722f2d3ddec"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/mapping/EmbeddedClassMapping.java:301-307 | core/src/main/java/org/codefilarete/stalactite/mapping/ZonedDateTimeMapping.java:118-124 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/mapping/EmbeddedClassMapping.java"},"region":{"startLine":301}}}],"partialFingerprints":{"codehealthFindingId/v1":"e1e0a0ad3cf4132e829e56674ceace273230f72e9d8e46fe0ed06ba13f2a69bb"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/dsl/naming/ElementCollectionTableNamingStrategy.java:38-44 | orm/src/main/java/org/codefilarete/stalactite/dsl/naming/MapTableNamingStrategy.java:53-59 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/dsl/naming/ElementCollectionTableNamingStrategy.java"},"region":{"startLine":38}}}],"partialFingerprints":{"codehealthFindingId/v1":"42973ec91f0b67fbfa30b34713970ac14001291621dede62bfa7ce59e12b5f54"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 4): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java:224-230 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToOneMetadataResolver.java:146-152 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java:187-192 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToOneMetadataResolver.java:126-131 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/ManyToManyMetadataResolver.java"},"region":{"startLine":224}}}],"partialFingerprints":{"codehealthFindingId/v1":"b16bfc64870c3815164cc672a8ebd3b48a033b0cf19a82d759366b82731b7637"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/manytoone/ManyToOneEngine.java:119-124 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytoone/ManyToOneEngine.java:120-125 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/manytoone/ManyToOneEngine.java"},"region":{"startLine":119}}}],"partialFingerprints":{"codehealthFindingId/v1":"ef24368945bd9c599954bc5f4b648a7515ee52be8d393e3c723a77c9f4549da3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/IndexedMappedManyRelationDescriptor.java:90-95 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/IndexedMappedManyRelationDescriptor.java:90-95 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/IndexedMappedManyRelationDescriptor.java"},"region":{"startLine":90}}}],"partialFingerprints":{"codehealthFindingId/v1":"266568a1eaa5db29ebae27203ec462a07e6f08542bd5f0addc7da003ac14b9b4"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:361-366 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyWithIndexedMappedAssociationEngine.java:253-258 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetomany/OneToManyWithIndexedMappedAssociationEngine.java"},"region":{"startLine":361}}}],"partialFingerprints":{"codehealthFindingId/v1":"5efafcb8d70fa8c37b78ce60759d09c0e60f20e98f9266df2f537c5d59f74fae"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java:369-374 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetoone/OneToOneOwnedByTargetEngine.java:370-375 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/onetoone/OneToOneOwnedByTargetEngine.java"},"region":{"startLine":369}}}],"partialFingerprints":{"codehealthFindingId/v1":"d8243b0c772b758684a64432e001a471291d855f289dfcc2195757583b5192f1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/AbstractPolymorphicEntityFinder.java:162-167 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/RelationalEntityFinder.java:251-256 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/AbstractPolymorphicEntityFinder.java"},"region":{"startLine":162}}}],"partialFingerprints":{"codehealthFindingId/v1":"a33cb3c1cf0a919e0ce87fb6b86190bbae7374a77343af8fa08a837e8cb7c538"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/SimpleRelationalEntityPersister.java:95-100 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/SimpleRelationalEntityPersister.java:108-113 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/SimpleRelationalEntityPersister.java"},"region":{"startLine":95}}}],"partialFingerprints":{"codehealthFindingId/v1":"b1c2811bdbce3b4a3fad8b9951fa901762741d303636bc4ca32bea1a1e2362e8"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:504-509 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:512-517 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":504}}}],"partialFingerprints":{"codehealthFindingId/v1":"4a4c617b7e5f4a83fd14e44b28d6ddefb27d89fdf0ad8e4574bc4b2bf6b10f33"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java:549-554 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PropertyMappingResolver.java:379-384 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java"},"region":{"startLine":549}}}],"partialFingerprints":{"codehealthFindingId/v1":"768485c44a4999edaf2fb403a6c88efe7ed03e880ca737657019097794cf0b69"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentifierManagerStep.java:109-114 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/IdentifierMappingBuilder.java:153-158 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/IdentifierManagerStep.java"},"region":{"startLine":109}}}],"partialFingerprints":{"codehealthFindingId/v1":"7d0aae4f77655a1cc0306a6532d4bc5eb6055977b75a4c164b445431961e62b3"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/PrimaryKeyStep.java:46-51 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PrimaryKeyResolver.java:40-45 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/PrimaryKeyStep.java"},"region":{"startLine":46}}}],"partialFingerprints":{"codehealthFindingId/v1":"8cfc00a24de628acea3bb70498dc423bcc82421d6f5955e4eceada10eddb9089"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PolymorphismMetadataResolver.java:71-77 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PolymorphismMetadataResolver.java:98-103 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/PolymorphismMetadataResolver.java"},"region":{"startLine":71}}}],"partialFingerprints":{"codehealthFindingId/v1":"a4de16bdb0867e25e876acf0df913a780af45db4f9e716a4741711251acb9866"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelationConfigurer.java:161-166 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelationConfigurer.java:203-209 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementCollectionRelationConfigurer.java"},"region":{"startLine":161}}}],"partialFingerprints":{"codehealthFindingId/v1":"b5613d60e44bd3ff1e0082510edeea834d87453c2bad26915db152676765166e"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java:355-360 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyMapRelationConfigurer.java:352-357 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java"},"region":{"startLine":355}}}],"partialFingerprints":{"codehealthFindingId/v1":"32eaa4ec0873665d7bb3291f9e628a30682753e79cd1b447b1bee50cb7e82322"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java:363-370 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsValueMapRelationConfigurer.java:351-356 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/EntityAsKeyAndValueMapRelationConfigurer.java"},"region":{"startLine":363}}}],"partialFingerprints":{"codehealthFindingId/v1":"9eee482bf70e89f94d5ca1746f8295e5bbf78901c28e6e07cbcb70bc19a98d5f"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapUpdater.java:100-105 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/MapUpdater.java:103-108 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapUpdater.java"},"region":{"startLine":100}}}],"partialFingerprints":{"codehealthFindingId/v1":"28147a5d419f7fac8abaf740b1fe80be53ad866e2eaa56b634511159dd2497cf"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapUpdater.java:176-181 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/map/MapUpdater.java:179-184 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapUpdater.java"},"region":{"startLine":176}}}],"partialFingerprints":{"codehealthFindingId/v1":"9b8b1b5b6e367fbd7c8bdff99c7f56ab2a1137088d374f1a222357231d1c2d8d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java:104-111 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyResolver.java:136-141 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java"},"region":{"startLine":104}}}],"partialFingerprints":{"codehealthFindingId/v1":"6631a9bbbf442f184e81b7634754065541cb849ea7af02f56c54f8040fcbc607"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (6 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java:145-153 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/onetomany/OneToManyResolver.java:170-175 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/manytomany/ManyToManyResolver.java"},"region":{"startLine":145}}}],"partialFingerprints":{"codehealthFindingId/v1":"c19abdd506d342bf488a6ddf10c4d5d2a9047e1b2555c6c64e610a9f4b7b166a"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 4): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapEntryKeyAndValueEntitiesUpdater.java:180-184 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapEntryKeyAndValueEntitiesUpdater.java:188-192 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapEntryKeyAndValueEntitiesUpdater.java:196-200 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapEntryKeyAndValueEntitiesUpdater.java:204-208 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapEntryKeyAndValueEntitiesUpdater.java"},"region":{"startLine":180}}}],"partialFingerprints":{"codehealthFindingId/v1":"d5db1af782eecccfadbbb3b841806c46774060a1a63e8d10f3290970d9839ebb"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/EntityJoinTree.java:314-318 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/EntityJoinTree.java:328-332 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/EntityJoinTree.java:347-351 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/EntityJoinTree.java"},"region":{"startLine":314}}}],"partialFingerprints":{"codehealthFindingId/v1":"4d8322fa9eb7d62ddb732085f67fc0bf49fc025450b00dee0d329f4a1b03a48d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 3): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementRecordMapping.java:172-176 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementRecordMapping.java:222-226 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/IndexedElementRecordMapping.java:228-232 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/elementcollection/ElementRecordMapping.java"},"region":{"startLine":172}}}],"partialFingerprints":{"codehealthFindingId/v1":"d0154842eb6af6ff2b65f9e0796f4898c53ae84fd8fcaf490901900be0484665"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): core/src/main/java/org/codefilarete/stalactite/sql/statement/DMLGenerator.java:177-181 | core/src/main/java/org/codefilarete/stalactite/sql/statement/DMLGenerator.java:228-232 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/sql/statement/DMLGenerator.java"},"region":{"startLine":177}}}],"partialFingerprints":{"codehealthFindingId/v1":"4b0018cd8bf4a11c3feeb171ff820c3cc005aacb1285bb18110e1b1947f74c67"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java:108-112 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/singletable/SingleTablePolymorphismPersister.java:119-123 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/jointable/JoinTablePolymorphismPersister.java"},"region":{"startLine":108}}}],"partialFingerprints":{"codehealthFindingId/v1":"6c50d0c987bb175d93a30529ef4b508243c0ad14d4a346a28f4c5476c8086394"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/runtime/AbstractPolymorphicEntityFinder.java:176-180 | orm/src/main/java/org/codefilarete/stalactite/engine/runtime/RelationalEntityFinder.java:278-282 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/runtime/AbstractPolymorphicEntityFinder.java"},"region":{"startLine":176}}}],"partialFingerprints":{"codehealthFindingId/v1":"b1064d1aec399eb41a5b3a182acd76936e1a141949d3cc1b539d81b47a9644cc"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/cascade/AfterUpdateSupport.java:36-40 | orm/src/main/java/org/codefilarete/stalactite/engine/cascade/BeforeUpdateSupport.java:36-40 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/cascade/AfterUpdateSupport.java"},"region":{"startLine":36}}}],"partialFingerprints":{"codehealthFindingId/v1":"de79b88545255b6aaca582fdd09449ed93263de6dffd0ce2b69237247770187c"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyCycleConfigurer.java:44-48 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/onetomany/OneToManyCycleConfigurer.java:42-46 \u2014 the copies span different directories, so extracting a shared function means choosing where it lives: put it wherever the callers may both depend on (the module they already share, or a small common one if they share none) and call it from each site \u2014 until then, every change has to be made twice."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/manytomany/ManyToManyCycleConfigurer.java"},"region":{"startLine":44}}}],"partialFingerprints":{"codehealthFindingId/v1":"e8c1de3567cc3bb6999a9979929f6f3a5529377f0b8c52bd7cdbd3cc356dc1c6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 2): orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/SkeletonAggregateResolver.java:106-110 | orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/SkeletonAggregateResolver.java:118-126 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/SkeletonAggregateResolver.java"},"region":{"startLine":106}}}],"partialFingerprints":{"codehealthFindingId/v1":"e50105565123caa52e97067c708e1d53f134e76b81322390db436fa85e735789"}},{"ruleId":"D15","level":"warning","message":{"text":"Hotspot: orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java: orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java changed 4 times in last 90 days, max complexity 16."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/engine/configurer/dslresolver/OneToManyMetadataResolver.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"777aa9f48762e9076ec790d67e3f061dbb1e3f8b179bc934af4eca5d49794fcf"}},{"ruleId":"D16","level":"note","message":{"text":"Off-boarding risk: anonymized user #1: If anonymized user #1 becomes unavailable, 232 significant file(s) lose their only recent owner: orm/src/main/java/org/codefilarete/stalactite/engine/configurer/entity/FluentEntityMappingConfigurationSupport.java, orm/src/main/java/org/codefilarete/stalactite/dsl/entity/FluentEntityMappingBuilder.java, orm/src/main/java/org/codefilarete/stalactite/engine/runtime/load/EntityJoinTree.java, orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java, core/src/main/java/org/codefilarete/stalactite/engine/QueryMapper.java, orm/src/main/java/org/codefilarete/stalactite/engine/runtime/tableperclass/TablePerClassPolymorphismPersister.java, orm/src/main/java/org/codefilarete/stalactite/engine/configurer/resolver/AggregateResolver.java, orm/src/main/java/org/codefilarete/stalactite/engine/configurer/builder/embeddable/EmbeddableMappingBuilder.java (\u002B224 more). Pair on, review, or document these before any departure."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"589f231f9c2e4e9ea3ffe639f68b615c1556d314551dfc62abbbca7c5e64057a"}},{"ruleId":"D19","level":"note","message":{"text":"The adaptation layer for PostgreSQL is described only in a truncated section (\u0027Specifies adhoc PostgreSQL SQL types...\u0027) and no further details on how it maps JDBC types to the database schema.: Expand this README to describe the supported PostgreSQL SQL type mappings, any dialect-specific configuration, and an example of how a JDBC column is translated into a query parameter."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"sql-adapter/sql-postgresql-adapter/README.md"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"3455ff7398f5a99f62cbba86c5a329a670f4054929303cc489f115571d2fb128"}},{"ruleId":"D29","level":"warning","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"f3d4e664cc87a89b95abaed3c01b48145d6507f7b5be3cca5307c558f5a5e08d"},"taxa":[{"id":"CWE-328","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BeanRepositoryQuery.java \u2194 DomainEntityNativeQueryExecutor.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/BeanRepositoryQuery.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/nativ/DomainEntityNativeQueryExecutor.java\u0060 change together 70% of the time (7 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/BeanRepositoryQuery.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"61440fcd056742500c874b4f77bb1bd40660c03619a95d1a981fa570b4c769c0"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: PartTreeStalactiteDelete.java \u2194 PartTreeStalactiteProjection.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/domain/PartTreeStalactiteDelete.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/projection/PartTreeStalactiteProjection.java\u0060 change together 70% of the time (7 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/domain/PartTreeStalactiteDelete.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"e9c23d08ba80ae804fc03ae571221321e5e34cb8d97194ec9170e44368ec854c"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: AbstractDerivedQuery.java \u2194 PartTreeStalactiteProjection.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/derivation/AbstractDerivedQuery.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/projection/PartTreeStalactiteProjection.java\u0060 change together 62% of the time (10 of the 16 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/derivation/AbstractDerivedQuery.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"b35358dea78998d90b5ea7cc0ed785e8a2458ba7aba74c9a7b10964636438369"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: AbstractRepositoryQuery.java \u2194 TupleNativeQueryExecutor.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/AbstractRepositoryQuery.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/nativ/TupleNativeQueryExecutor.java\u0060 change together 62% of the time (8 of the 13 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/AbstractRepositoryQuery.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"45816b6ecd5ac2dfb3d46d58262f3eba7c03872a6059ea2430db7ea709f1c6ac"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: AbstractRepositoryQuery.java \u2194 DomainEntityNativeQueryExecutor.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/AbstractRepositoryQuery.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/nativ/DomainEntityNativeQueryExecutor.java\u0060 change together 60% of the time (6 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/execution/AbstractRepositoryQuery.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"4f7149e6ab1e002a9b5a79e259ab3970a683cf3968482bae812805880108e34e"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: FluentEntityMappingBuilder.java \u2194 MapRelation.java: \u0060orm/src/main/java/org/codefilarete/stalactite/dsl/entity/FluentEntityMappingBuilder.java\u0060 and \u0060orm/src/main/java/org/codefilarete/stalactite/engine/configurer/map/MapRelation.java\u0060 change together 60% of the time (6 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/dsl/entity/FluentEntityMappingBuilder.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"94f38b5e63c8b5fc0d96a94b10c2b8548f650b1ea831901482b7fb7a872077f3"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: CompositeKeyMappingConfiguration.java \u2194 FluentEmbeddableMappingConfigurationSupport.java: \u0060orm/src/main/java/org/codefilarete/stalactite/dsl/key/CompositeKeyMappingConfiguration.java\u0060 and \u0060orm/src/main/java/org/codefilarete/stalactite/engine/configurer/embeddable/FluentEmbeddableMappingConfigurationSupport.java\u0060 change together 60% of the time (6 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"orm/src/main/java/org/codefilarete/stalactite/dsl/key/CompositeKeyMappingConfiguration.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"7ccc485d123930da38cf43c12a513946d2f8ad463bdfca84d10b9dbf6ab851bc"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: DomainEntityNativeQueryExecutor.java \u2194 PartTreeStalactiteProjection.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/nativ/DomainEntityNativeQueryExecutor.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/projection/PartTreeStalactiteProjection.java\u0060 change together 60% of the time (6 of the 10 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/nativ/DomainEntityNativeQueryExecutor.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"11b2a4ff5d872c2d99469e392508f94e122321c9ce85d224295621fad7b16e62"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: DatabaseCrudOperations.java \u2194 Update.java: \u0060core/src/main/java/org/codefilarete/stalactite/engine/crud/DatabaseCrudOperations.java\u0060 and \u0060core/src/main/java/org/codefilarete/stalactite/sql/order/Update.java\u0060 change together 55% of the time (6 of the 11 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"core/src/main/java/org/codefilarete/stalactite/engine/crud/DatabaseCrudOperations.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"dc7d170e94518d092e451d9d437243ee680209e8c8ce63e01ea5407ebd6dc7ef"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling: BeanRepositoryQuery.java \u2194 TupleNativeQueryExecutor.java: \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/BeanRepositoryQuery.java\u0060 and \u0060spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/nativ/TupleNativeQueryExecutor.java\u0060 change together 54% of the time (7 of the 13 commits that touched the less-changed of the two, renames followed) with no explicit dependency \u2014 a hidden/logical coupling. If they belong together, co-locate them; if not, break the coupling."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"spring-integration/spring-data/src/main/java/org/codefilarete/stalactite/spring/repository/query/bean/BeanRepositoryQuery.java"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"2152333d352a5ac445930898f3b66db6c291aef66d9eba10fa1fdd3801768b60"}}],"taxonomies":[{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d","organization":"MITRE","informationUri":"https://cwe.mitre.org/","isComprehensive":false,"shortDescription":{"text":"The MITRE Common Weakness Enumeration (CWE)."},"taxa":[{"id":"CWE-259","guid":"ae9ad959-fbb6-9d5e-892d-3dca66da0b69","name":"Use of Hard-coded Password","shortDescription":{"text":"Use of Hard-coded Password"},"helpUri":"https://cwe.mitre.org/data/definitions/259.html"},{"id":"CWE-328","guid":"f0ffc869-97c3-dc5c-8825-be1159f1fc5f","name":"CWE-328","shortDescription":{"text":"CWE-328"},"helpUri":"https://cwe.mitre.org/data/definitions/328.html"},{"id":"CWE-77","guid":"332c8ade-6612-9f56-a06b-d8d90b1a8750","name":"Command Injection","shortDescription":{"text":"Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/77.html"},{"id":"CWE-78","guid":"2e31ceaf-c7ae-2e5e-9661-cfb1362789cf","name":"OS Command Injection","shortDescription":{"text":"OS Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/78.html"},{"id":"CWE-79","guid":"fd45580b-e8c4-fc5e-8c2f-aa8fab0b4dbf","name":"Cross-site Scripting (XSS)","shortDescription":{"text":"Cross-site Scripting (XSS)"},"helpUri":"https://cwe.mitre.org/data/definitions/79.html"},{"id":"CWE-798","guid":"5e8f057d-fee3-995a-a0cb-9fc5b0d174d1","name":"Use of Hard-coded Credentials","shortDescription":{"text":"Use of Hard-coded Credentials"},"helpUri":"https://cwe.mitre.org/data/definitions/798.html"},{"id":"CWE-89","guid":"6d08fdad-37eb-c150-bbf0-d7d946863407","name":"SQL Injection","shortDescription":{"text":"SQL Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/89.html"},{"id":"CWE-94","guid":"75e7f50c-6c2f-dd52-bf40-bf6c52b861fd","name":"Code Injection","shortDescription":{"text":"Code Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/94.html"}]}],"properties":{"codehealthPublication":{"public":true,"notice":"This is the PUBLIC form of this artifact. Findings are listed in full, but the details of SECURITY findings \u2014 which rule fired, in which file, on which line, and how to fix it \u2014 are deliberately withheld, and any secret-scanner results are excluded entirely. Where detail is absent here it was REMOVED FOR PUBLICATION; it is not missing from the analysis. The complete artifact is available from the repository owner.","securityFindingsRedacted":1,"secretScannerRunsExcluded":0}},"redactionTokens":["A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."]}]}