Skip to content

Commit

Permalink
Merge pull request #595 from spruceid/remove-and
Browse files Browse the repository at this point in the history
Remove unnecessary AND
  • Loading branch information
KodrAus committed Apr 14, 2022
2 parents 5f649d7 + 444ef96 commit 43905eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.rs
Expand Up @@ -754,7 +754,7 @@ impl Builder {
Variant::NCS => byte & 0x7f,
Variant::RFC4122 => (byte & 0x3f) | 0x80,
Variant::Microsoft => (byte & 0x1f) | 0xc0,
Variant::Future => (byte & 0x1f) | 0xe0,
Variant::Future => byte | 0xe0,
};

self
Expand Down

0 comments on commit 43905eb

Please sign in to comment.