Skip to content

Commit

Permalink
Remove unnecessary AND
Browse files Browse the repository at this point in the history
  • Loading branch information
clehner committed Apr 6, 2022
1 parent 5f649d7 commit 444ef96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.rs
Original file line number Diff line number Diff line change
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 444ef96

Please sign in to comment.