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

Commit

Permalink
Merge pull request #371 from Dadude123/patch-1
Browse files Browse the repository at this point in the history
attribute "namespace X in module Y" fixed.
  • Loading branch information
yck1509 committed Nov 23, 2015
2 parents 551dd48 + 5dfcf17 commit 87347c4
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 87347c4

Please sign in to comment.