Skip to content

Commit

Permalink
Fix source encoding constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
chumer committed Feb 5, 2024
1 parent bcf2143 commit fb6d33a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
*/
public final class BytecodeConfig {

private static final long SOURCE_ENCODING = 0xb1L;
private static final long SOURCE_ENCODING = 0b1L;

/**
* Retain no sources or instrumentation information.
Expand Down Expand Up @@ -105,6 +105,7 @@ public static Builder newBuilder(BytecodeConfigEncoder encoder) {
public static class Builder {
private final BytecodeConfigEncoder encoder;
private long encoding;

Builder(BytecodeConfigEncoder encoder) {
this.encoder = encoder;
}
Expand Down

0 comments on commit fb6d33a

Please sign in to comment.