-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
opentype, fontscan: remove go1.16 build constraints (#114)
* opentype, fontscan: remove go1.16 build constraints Now this project uses Go 1.17 and newer, an old code for Go 1.15 and older should not be needed. * .github: update the minimum Go version
- Loading branch information
1 parent
af78120
commit 3b7c920
Showing
4 changed files
with
1 addition
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
//go:build go1.16 | ||
// +build go1.16 | ||
|
||
package fontscan | ||
|
||
import ( | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
// SPDX-License-Identifier: Unlicense OR BSD-3-Clause | ||
//go:build go1.16 | ||
// +build go1.16 | ||
|
||
package testutils | ||
|
||
|