File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/BenchmarkDotNet/Disassemblers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -381,12 +381,12 @@ internal void Deserialize(JsonObject json)
381381 }
382382
383383 var addressToNameMapping = ( JsonObject ) json [ nameof ( AddressToNameMapping ) ] ;
384- var serializedAddressToNameMapping = new MutablePair [ addressToNameMapping . Count ] ;
384+ SerializedAddressToNameMapping = new MutablePair [ addressToNameMapping . Count ] ;
385385 int addressIndex = 0 ;
386386 foreach ( var kvp in addressToNameMapping )
387387 {
388- serializedAddressToNameMapping [ addressIndex ] . Key = ulong . Parse ( kvp . Key ) ;
389- serializedAddressToNameMapping [ addressIndex ] . Value = ( string ) kvp . Value ;
388+ SerializedAddressToNameMapping [ addressIndex ] . Key = ulong . Parse ( kvp . Key ) ;
389+ SerializedAddressToNameMapping [ addressIndex ] . Value = ( string ) kvp . Value ;
390390 ++ addressIndex ;
391391 }
392392
You can’t perform that action at this time.
0 commit comments