mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Fixed ineffectual assignments (#7555)
Don't assign values we never use.
This commit is contained in:
		
				
					committed by
					
						
						Lunny Xiao
					
				
			
			
				
	
			
			
			
						parent
						
							9a965035f0
						
					
				
				
					commit
					b0cd3b8ab9
				
			@@ -543,7 +543,7 @@ func ParsePatch(maxLines, maxLineCharacters, maxFiles int, reader io.Reader) (*D
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		// Get new file.
 | 
							// Get new file.
 | 
				
			||||||
		if strings.HasPrefix(line, cmdDiffHead) {
 | 
							if strings.HasPrefix(line, cmdDiffHead) {
 | 
				
			||||||
			middle := -1
 | 
								var middle int
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			// Note: In case file name is surrounded by double quotes (it happens only in git-shell).
 | 
								// Note: In case file name is surrounded by double quotes (it happens only in git-shell).
 | 
				
			||||||
			// e.g. diff --git "a/xxx" "b/xxx"
 | 
								// e.g. diff --git "a/xxx" "b/xxx"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -81,7 +81,6 @@ func twofaGenerateSecretAndQr(ctx *context.Context) bool {
 | 
				
			|||||||
	// Filter unsafe character ':' in issuer
 | 
						// Filter unsafe character ':' in issuer
 | 
				
			||||||
	issuer := strings.Replace(setting.AppName+" ("+setting.Domain+")", ":", "", -1)
 | 
						issuer := strings.Replace(setting.AppName+" ("+setting.Domain+")", ":", "", -1)
 | 
				
			||||||
	if otpKey == nil {
 | 
						if otpKey == nil {
 | 
				
			||||||
		err = nil // clear the error, in case the URL was invalid
 | 
					 | 
				
			||||||
		otpKey, err = totp.Generate(totp.GenerateOpts{
 | 
							otpKey, err = totp.Generate(totp.GenerateOpts{
 | 
				
			||||||
			SecretSize:  40,
 | 
								SecretSize:  40,
 | 
				
			||||||
			Issuer:      issuer,
 | 
								Issuer:      issuer,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user