Skip to content

Commit

Permalink
Resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Sep 14, 2024
1 parent 499ad51 commit cd7e86a
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -404,12 +404,11 @@ private boolean contentEquals(File referenceFile, File actualFile) throws IOExce
do {
refLine = referenceFileReader.readLine();
actualLine = actualFileReader.readLine();
if ( !Objects.equals( refLine, actualLine ) )
{
getLog().warn( "Conflict found. Reference line :" );
getLog().warn( refLine );
getLog().warn( "Actual line :" );
getLog().warn( actualLine );
if (!Objects.equals(refLine, actualLine)) {
getLog().warn("Conflict found. Reference line :");
getLog().warn(refLine);
getLog().warn("Actual line :");
getLog().warn(actualLine);
return false;
}
} while (refLine != null || actualLine != null);
Expand Down

0 comments on commit cd7e86a

Please sign in to comment.