mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Remove redundant Unix timestamp method call
Unix() already uses UTC as timezone
This commit is contained in:
		| @@ -62,11 +62,11 @@ type PublicKey struct { | ||||
| } | ||||
|  | ||||
| func (k *PublicKey) BeforeInsert() { | ||||
| 	k.CreatedUnix = time.Now().UTC().Unix() | ||||
| 	k.CreatedUnix = time.Now().Unix() | ||||
| } | ||||
|  | ||||
| func (k *PublicKey) BeforeUpdate() { | ||||
| 	k.UpdatedUnix = time.Now().UTC().Unix() | ||||
| 	k.UpdatedUnix = time.Now().Unix() | ||||
| } | ||||
|  | ||||
| func (k *PublicKey) AfterSet(colName string, _ xorm.Cell) { | ||||
| @@ -638,11 +638,11 @@ type DeployKey struct { | ||||
| } | ||||
|  | ||||
| func (k *DeployKey) BeforeInsert() { | ||||
| 	k.CreatedUnix = time.Now().UTC().Unix() | ||||
| 	k.CreatedUnix = time.Now().Unix() | ||||
| } | ||||
|  | ||||
| func (k *DeployKey) BeforeUpdate() { | ||||
| 	k.UpdatedUnix = time.Now().UTC().Unix() | ||||
| 	k.UpdatedUnix = time.Now().Unix() | ||||
| } | ||||
|  | ||||
| func (k *DeployKey) AfterSet(colName string, _ xorm.Cell) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user