@@ -39,7 +39,6 @@ public class ProfilerResult {
3939 private volatile Operation operationType ;
4040 private volatile boolean dataLoaderChainingEnabled ;
4141 private final Set <Integer > oldStrategyDispatchingAll = ConcurrentHashMap .newKeySet ();
42- private final Set <Integer > chainedStrategyDispatching = ConcurrentHashMap .newKeySet ();
4342
4443 private final List <String > instrumentationClasses = Collections .synchronizedList (new ArrayList <>());
4544
@@ -172,9 +171,6 @@ void oldStrategyDispatchingAll(int level) {
172171 }
173172
174173
175- void chainedStrategyDispatching (int level ) {
176- chainedStrategyDispatching .add (level );
177- }
178174
179175 void addDispatchEvent (String dataLoaderName , @ Nullable Integer level , int count , DispatchEventType type ) {
180176 dispatchEvents .add (new DispatchEvent (dataLoaderName , level , count , type ));
@@ -251,9 +247,6 @@ public Map<String, Integer> getDataLoaderLoadInvocations() {
251247 return dataLoaderLoadInvocations ;
252248 }
253249
254- public Set <Integer > getChainedStrategyDispatching () {
255- return chainedStrategyDispatching ;
256- }
257250
258251 public Set <Integer > getOldStrategyDispatchingAll () {
259252 return oldStrategyDispatchingAll ;
@@ -288,7 +281,6 @@ public String fullSummary() {
288281 ", dataLoaderChainingEnabled=" + dataLoaderChainingEnabled +
289282 ", dataLoaderLoadInvocations=" + dataLoaderLoadInvocations +
290283 ", oldStrategyDispatchingAll=" + oldStrategyDispatchingAll +
291- ", chainedStrategyDispatching=" + chainedStrategyDispatching +
292284 ", dispatchEvents=" + printDispatchEvents () +
293285 '}' ;
294286 }
@@ -307,7 +299,6 @@ public String shortSummary() {
307299 ", dataLoaderChainingEnabled=" + dataLoaderChainingEnabled +
308300 ", dataLoaderLoadInvocations=" + dataLoaderLoadInvocations +
309301 ", oldStrategyDispatchingAll=" + oldStrategyDispatchingAll +
310- ", chainedStrategyDispatching=" + chainedStrategyDispatching +
311302 ", dispatchEvents=" + printDispatchEvents () +
312303 '}' ;
313304
@@ -328,7 +319,6 @@ public Map<String, Object> shortSummaryMap() {
328319 result .put ("dataLoaderChainingEnabled" , dataLoaderChainingEnabled );
329320 result .put ("dataLoaderLoadInvocations" , dataLoaderLoadInvocations );
330321 result .put ("oldStrategyDispatchingAll" , oldStrategyDispatchingAll );
331- result .put ("chainedStrategyDispatching" , chainedStrategyDispatching );
332322 result .put ("dispatchEvents" , getDispatchEventsAsMap ());
333323 result .put ("instrumentationClasses" , instrumentationClasses );
334324 return result ;
0 commit comments