Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyBlaise99 committed Nov 12, 2023
1 parent dbefd1c commit c381891
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ private static CandidateLine getDeletedLineWithLowestOriginalityInDiff(String fi
String deletedLineContent = lineChanged.substring(DELETED_LINE_SYMBOL.length());
double originalityScore = computeOriginalityScore(lineContent, deletedLineContent);

if (lowestOriginalityLine == null ||
originalityScore < lowestOriginalityLine.getOriginalityScore()) {
if (lowestOriginalityLine == null
|| originalityScore < lowestOriginalityLine.getOriginalityScore()) {
lowestOriginalityLine = new CandidateLine(
currentPreImageLineNumber, deletedLineContent, filePath, commitHash,
originalityScore);
Expand Down

0 comments on commit c381891

Please sign in to comment.