Browse Source

Remove redundant namespace usage.

pull/1347/head
Siegfried Pammer 7 years ago
parent
commit
8740e2413d
  1. 4
      ICSharpCode.Decompiler/IL/BlockBuilder.cs

4
ICSharpCode.Decompiler/IL/BlockBuilder.cs

@ -60,10 +60,10 @@ namespace ICSharpCode.Decompiler.IL @@ -60,10 +60,10 @@ namespace ICSharpCode.Decompiler.IL
handlerBlock.Blocks.Add(new Block());
handlerContainers.Add(handlerBlock.ILRange.Start, handlerBlock);
if (eh.Kind == System.Reflection.Metadata.ExceptionRegionKind.Fault || eh.Kind == System.Reflection.Metadata.ExceptionRegionKind.Finally) {
if (eh.Kind == ExceptionRegionKind.Fault || eh.Kind == ExceptionRegionKind.Finally) {
var tryBlock = new BlockContainer();
tryBlock.ILRange = tryRange;
if (eh.Kind == System.Reflection.Metadata.ExceptionRegionKind.Finally)
if (eh.Kind == ExceptionRegionKind.Finally)
tryInstructionList.Add(new TryFinally(tryBlock, handlerBlock));
else
tryInstructionList.Add(new TryFault(tryBlock, handlerBlock));

Loading…
Cancel
Save