Skip to content

Commit

Permalink
Small changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikasoukhov committed Jul 4, 2019
1 parent ff2e729 commit c84dd8d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
5 changes: 1 addition & 4 deletions Algo/BasketMessageAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,6 @@ private IMessageAdapter CreateWrappers(IMessageAdapter adapter)
adapter = new OrderBookMessageAdapter(adapter);
}

if (IgnoreExtraAdapters)
return adapter;

if (adapter.IsFullCandlesOnly)
{
adapter = new CandleHolderMessageAdapter(adapter);
Expand Down Expand Up @@ -463,7 +460,7 @@ protected override void OnSendInMessage(Message message)
lock (_connectedResponseLock)
_pendingConnectAdapters.Add(a);
var wrapper = CreateWrappers(a);
var wrapper = IgnoreExtraAdapters ? a : CreateWrappers(a);
var adapter = wrapper;
Expand Down
1 change: 0 additions & 1 deletion Algo/Testing/RealTimeEmulationTrader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ namespace StockSharp.Algo.Testing
using System.Collections.Generic;
using System.Linq;

using Ecng.Common;
using Ecng.Serialization;

using StockSharp.BusinessEntities;
Expand Down
1 change: 0 additions & 1 deletion Configuration/InMemoryMessageAdapterProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ namespace StockSharp.Configuration

using Ecng.Common;

using StockSharp.Fix;
using StockSharp.Logging;
using StockSharp.Messages;

Expand Down

0 comments on commit c84dd8d

Please sign in to comment.