Fix file header template (and a violation)

Files are supposed to start with a line like this:

    // Copyright 20XX Signal Messenger, LLC

However, the IDE template macro looked like this:

    // Copyright (c) 20XX Signal Messenger, LLC

That caused our linter at `Scripts/lint/lint-license-headers` to
complain. This fixes that, and a violation of it.

I introduced this recently in 370ff654e7.
This commit is contained in:
Evan Hahn
2022-10-13 17:28:18 -05:00
committed by GitHub
parent a78b34e270
commit 864b2d1b3d
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<dict>
<key>FILEHEADER</key>
<string>
// Copyright (c) ___YEAR___ Signal Messenger, LLC
// Copyright ___YEAR___ Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//</string>
</dict>

View File

@@ -1,5 +1,5 @@
//
// Copyright (c) 2022 Signal Messenger, LLC
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//