mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-21 08:09:50 +08:00
refactor: replace statement with expression lambda
This commit is contained in:
@@ -295,9 +295,7 @@ public class GameQuest {
|
||||
getMainQuest().getChildQuests().values().stream()
|
||||
.filter(p -> p.getQuestData().getOrder() > this.getQuestData().getOrder())
|
||||
.forEach(
|
||||
q -> {
|
||||
q.clearProgress(notifyDelete);
|
||||
});
|
||||
q -> q.clearProgress(notifyDelete));
|
||||
clearProgress(notifyDelete);
|
||||
this.start();
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user