mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 15:30:49 +08:00 
			
		
		
		
	Fix multiple statements on single line
SA1107
This commit is contained in:
		@@ -19,7 +19,7 @@ namespace Ocelot.Raft
 | 
			
		||||
            //todo - handle an error
 | 
			
		||||
            //hack it to just cast as at the moment we know this is the only command :P
 | 
			
		||||
            var hack = (UpdateFileConfiguration)log.CommandData;
 | 
			
		||||
            _setter.Set(hack.Configuration).GetAwaiter().GetResult();;
 | 
			
		||||
            _setter.Set(hack.Configuration).GetAwaiter().GetResult();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -51,7 +51,7 @@ namespace Ocelot.Requester
 | 
			
		||||
                if (!c.Contains(k))
 | 
			
		||||
                {
 | 
			
		||||
                    c.Add(k, v);
 | 
			
		||||
                };
 | 
			
		||||
                }
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            span.Log(LogField.CreateNew().ClientSend());
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user