mirror of
				https://github.com/Ryujinx/GtkSharp.git
				synced 2025-11-04 08:24:56 +00:00 
			
		
		
		
	generator: avoid double lookup in dictionary when DeAlias is called
We can avoid a double lookup in the types dictionary here because the method TryGetValue() was just called before.
This commit is contained in:
		
							parent
							
								
									6e0efb08f2
								
							
						
					
					
						commit
						4046a4c4bd
					
				| 
						 | 
				
			
			@ -213,7 +213,7 @@ namespace GtkSharp.Generation {
 | 
			
		|||
			type = Trim (type);
 | 
			
		||||
			IGeneratable cur_type = null;
 | 
			
		||||
			while (types.TryGetValue (type, out cur_type) && cur_type is AliasGen) {
 | 
			
		||||
				IGeneratable igen = types [type] as AliasGen;
 | 
			
		||||
				IGeneratable igen = cur_type as AliasGen;
 | 
			
		||||
				types [type] = types [igen.Name];
 | 
			
		||||
				type = igen.Name;
 | 
			
		||||
			}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue