Skip to content

Commit

Permalink
Fix inconsistent signatures in JavacJctFlagBuilderImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes committed Dec 15, 2024
1 parent d894013 commit bf1f8ad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public JavacJctFlagBuilderImpl target(@Nullable String version) {
}

@Override
public JctFlagBuilder debuggingInfo(Set<DebuggingInfo> set) {
public JavacJctFlagBuilderImpl debuggingInfo(Set<DebuggingInfo> set) {
if (set.isEmpty()) {
craftedFlags.add(DEBUG_NONE);
return this;
Expand All @@ -144,7 +144,7 @@ public JctFlagBuilder debuggingInfo(Set<DebuggingInfo> set) {
}

@Override
public JctFlagBuilder parameterInfoEnabled(boolean enabled) {
public JavacJctFlagBuilderImpl parameterInfoEnabled(boolean enabled) {
return addFlagIfTrue(enabled, PARAMETERS);
}

Expand Down

0 comments on commit bf1f8ad

Please sign in to comment.