diff options
Diffstat (limited to 'sonar-batch/src/main')
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/cpd/index/SonarDuplicationsIndex.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/cpd/index/SonarDuplicationsIndex.java b/sonar-batch/src/main/java/org/sonar/batch/cpd/index/SonarDuplicationsIndex.java index ca331ebeb2c..f5872efdd50 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/cpd/index/SonarDuplicationsIndex.java +++ b/sonar-batch/src/main/java/org/sonar/batch/cpd/index/SonarDuplicationsIndex.java @@ -60,9 +60,7 @@ public class SonarDuplicationsIndex extends AbstractCloneIndex { builder.setEndLine(input.getEndLine()); builder.setStartTokenIndex(input.getStartUnit()); builder.setEndTokenIndex(input.getEndUnit()); - for (int i : input.getBlockHash().toIntArray()) { - builder.addHash(i); - } + builder.setHash(input.getBlockHash().toHexString()); return builder.build(); } })); |