Skip to content
This repository has been archived by the owner on Jan 27, 2019. It is now read-only.

Commit

Permalink
attribute "namespace X in module Y" fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfgasdfsafgsdfa committed Nov 22, 2015
1 parent 551dd48 commit 5dfcf17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Confuser.Core/ObfAttrMarker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void ApplySettings(IDnlibDef def, Rules rules, IEnumerable<ProtectionSettingsInf
}

static readonly Regex NSPattern = new Regex("namespace '([^']*)'");
static readonly Regex NSInModulePattern = new Regex("namespace '([^']*)' in module '([^'])'");
static readonly Regex NSInModulePattern = new Regex("namespace '([^']*)' in module '([^']*)'");

Dictionary<string, Dictionary<Regex, List<ObfuscationAttributeInfo>>> crossModuleAttrs;
ConfuserContext context;
Expand Down Expand Up @@ -505,4 +505,4 @@ void ProcessBody(MethodDef method, Rules rules, ProtectionSettingsStack stack) {
}
}
}
}
}

0 comments on commit 5dfcf17

Please sign in to comment.