Skip to content

Commit

Permalink
remove code comments, see uber/NullAway#801
Browse files Browse the repository at this point in the history
  • Loading branch information
TheosRee committed Jun 27, 2024
1 parent 528a6ac commit ba0e99b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public PrimaryServerThreadComposedEvent(final ComposedEvent synced, final Primar
public void execute(@Nullable final Profile profile) throws QuestRuntimeException {
call(() -> {
synced.execute(profile);
return null; // NullAway false positive: Void -> null
return null;
});
}

Expand All @@ -59,7 +59,7 @@ public void execute(@Nullable final Profile profile) throws QuestRuntimeExceptio
public void execute() throws QuestRuntimeException {
call(() -> {
synced.execute();
return null; // NullAway false positive: Void -> null
return null;
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public PrimaryServerThreadEvent(final Event synced, final PrimaryServerThreadDat
public void execute(final Profile profile) throws QuestRuntimeException {
call(() -> {
synced.execute(profile);
return null; // NullAway false positive: Void -> null
return null;
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public PrimaryServerThreadStaticEvent(final StaticEvent synced, final PrimarySer
public void execute() throws QuestRuntimeException {
call(() -> {
synced.execute();
return null; // NullAway false positive: Void -> null
return null;
});
}
}

0 comments on commit ba0e99b

Please sign in to comment.