Don't throw if invalid visibility

This commit is contained in:
de4dot 2011-10-08 18:42:09 +02:00
parent c94fea2bfc
commit 5eb824693e

View File

@ -422,7 +422,7 @@ namespace de4dot.renamer {
case TypeAttributes.NestedFamORAssem: case TypeAttributes.NestedFamORAssem:
return NestingType.isGlobalType(); return NestingType.isGlobalType();
default: default:
throw new ApplicationException(string.Format("Unknown nested type visibility mask: {0}", mask)); return false;
} }
} }