mirror of
https://github.com/signalapp/Signal-iOS.git
synced 2025-12-05 01:10:41 +00:00
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:
@@ -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>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// Copyright (c) 2022 Signal Messenger, LLC
|
||||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
//
|
||||
|
||||
|
||||
Reference in New Issue
Block a user