Update diff for lowercase tag names

This commit is contained in:
Diomidis Spinellis 2014-10-28 20:01:04 +02:00
parent f687058ca3
commit b23a483c1e
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ public class TestUtils {
outFile = outReader.readLine();
if (refLine == null || outFile == null) {
break;
} else if (refLine.startsWith("<META NAME=\"date\"")) {
if (!outFile.startsWith("<META NAME=\"date\""))
} else if (refLine.startsWith("<meta name=\"date\"")) {
if (!outFile.startsWith("<meta name=\"date\""))
break;
} else if (refLine.startsWith("<!-- Generated by javadoc ")) {
if (!outFile.startsWith("<!-- Generated by javadoc "))