[ci,timezone] remove clang-format off

we do format the files now properly before creating the automated pull,
the workaround is no longer required
This commit is contained in:
akallabeth 2024-10-12 09:04:39 +02:00
parent a01b97e991
commit d56fac7582
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5

View File

@ -30,8 +30,6 @@ internal class Program
fs.WriteLine("");
fs.WriteLine("#include \"" + fname + ".h\"");
fs.WriteLine("");
fs.WriteLine("// clang-format off");
fs.WriteLine("");
fs.WriteLine("static const " + fname + "Entry " + fname + "[] ={");
bool first = true;
@ -61,8 +59,6 @@ internal class Program
fs.WriteLine("};");
fs.WriteLine("");
fs.WriteLine("static const size_t " + fname + "Size = ARRAYSIZE(" + fname + ");");
fs.WriteLine("");
fs.WriteLine("// clang-format on");
}
return true;
}
@ -173,7 +169,6 @@ internal class Program
fs.WriteLine("");
fs.WriteLine("#include \"" + fname + ".h\"");
fs.WriteLine("");
fs.WriteLine("// clang-format off");
fs.WriteLine("const WINDOWS_TZID_ENTRY " + fname + "[] = {");
foreach (XmlNode mzone in mzones)
@ -189,7 +184,6 @@ internal class Program
fs.WriteLine("};");
fs.WriteLine("");
fs.WriteLine("const size_t " + fname + "NrElements = ARRAYSIZE(" + fname + ");");
fs.WriteLine("// clang-format on");
}
stdout.WriteLine("Finished update");
return true;