Skip to content

Commit

Permalink
Honor coding convention
Browse files Browse the repository at this point in the history
  • Loading branch information
jbevain committed May 23, 2012
1 parent e664ba1 commit b876fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mono.Cecil/AssemblyNameReference.cs
Expand Up @@ -176,7 +176,7 @@ public class AssemblyNameReference : IMetadataScope {
builder.Append ("PublicKeyToken=");

var pk_token = PublicKeyToken;
if (!pk_token.IsNullOrEmpty() && pk_token.Length > 0) {
if (!pk_token.IsNullOrEmpty () && pk_token.Length > 0) {
for (int i = 0 ; i < pk_token.Length ; i++) {
builder.Append (pk_token [i].ToString ("x2"));
}
Expand Down

0 comments on commit b876fcf

Please sign in to comment.