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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Peterson <petersonjm1@gmail.com>2017-04-07 15:10:56 +0300
committerJosh Peterson <petersonjm1@gmail.com>2017-04-07 15:10:56 +0300
commitebbd9a002cbbd48a95f3d62b45768b01d1735811 (patch)
treeeb469019ba37b1608923367cf82f3281855e41ec /Mono.Cecil/AssemblyReader.cs
parent8ca0137d35c4437f4f93b14d5ba7d6fcb3dd6a21 (diff)
Fix code formatting.
Diffstat (limited to 'Mono.Cecil/AssemblyReader.cs')
-rw-r--r--Mono.Cecil/AssemblyReader.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/Mono.Cecil/AssemblyReader.cs b/Mono.Cecil/AssemblyReader.cs
index 0aa0094..943e582 100644
--- a/Mono.Cecil/AssemblyReader.cs
+++ b/Mono.Cecil/AssemblyReader.cs
@@ -1,4 +1,4 @@
-//
+//
// Author:
// Jb Evain (jbevain@gmail.com)
//
@@ -838,7 +838,7 @@ namespace Mono.Cecil {
types [i] = ReadType (i + 1);
}
- if (module.IsWindowsMetadata()) {
+ if (module.IsWindowsMetadata ()) {
for (uint i = 0; i < length; i++) {
WindowsRuntimeProjections.Project (types [i]);
}
@@ -1050,9 +1050,8 @@ namespace Mono.Cecil {
type = ReadTypeDefinition (rid);
- if (module.IsWindowsMetadata()) {
+ if (module.IsWindowsMetadata ())
WindowsRuntimeProjections.Project (type);
- }
return type;
}