Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/linker/Linker.Steps/RemoveUnreachableBlocksStep.cs')
-rw-r--r--src/linker/Linker.Steps/RemoveUnreachableBlocksStep.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/linker/Linker.Steps/RemoveUnreachableBlocksStep.cs b/src/linker/Linker.Steps/RemoveUnreachableBlocksStep.cs
index d69323b1a..4e5c4f208 100644
--- a/src/linker/Linker.Steps/RemoveUnreachableBlocksStep.cs
+++ b/src/linker/Linker.Steps/RemoveUnreachableBlocksStep.cs
@@ -1,11 +1,11 @@
using System;
+using System.Collections;
+using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
-using System.Collections;
using Mono.Cecil;
using Mono.Cecil.Cil;
using Mono.Collections.Generic;
-using System.Collections.Generic;
namespace Mono.Linker.Steps
{