mirror of
https://github.com/github/codeql.git
synced 2026-04-08 08:34:02 +02:00
8 lines
148 B
Java
8 lines
148 B
Java
void printHeader(String headerStyle) {
|
|
if (headerStyle == null || headerStyle.equals("")) {
|
|
// No header
|
|
return;
|
|
}
|
|
// ... print the header
|
|
}
|