1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Simplify parameter types (#18006)

Remove repeated type declarations in function definitions.
This commit is contained in:
Gusted
2021-12-20 05:41:31 +01:00
committed by GitHub
parent 25677cdc5b
commit ff2fd08228
59 changed files with 115 additions and 116 deletions

View File

@@ -16,7 +16,7 @@ var (
// rotate the points by center point (x,y)
// angle: [0,1,2,3] means [090180270] degree
func rotate(points []int, x, y int, angle int) {
func rotate(points []int, x, y, angle int) {
// the angle is only used internally, and it has been guaranteed to be 0/1/2/3, so we do not check it again
for i := 0; i < len(points); i += 2 {
px, py := points[i]-x, points[i+1]-y