mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-17 00:32:34 +08:00
Lint code
This commit is contained in:
@@ -9,9 +9,7 @@ public class PacketScenePointUnlockNotify extends BasePacket {
|
||||
super(PacketOpcodes.ScenePointUnlockNotify);
|
||||
|
||||
ScenePointUnlockNotify.Builder p =
|
||||
ScenePointUnlockNotify.newBuilder()
|
||||
.setSceneId(sceneId)
|
||||
.addPointList(pointId);
|
||||
ScenePointUnlockNotify.newBuilder().setSceneId(sceneId).addPointList(pointId);
|
||||
|
||||
this.setData(p);
|
||||
}
|
||||
@@ -20,9 +18,7 @@ public class PacketScenePointUnlockNotify extends BasePacket {
|
||||
super(PacketOpcodes.ScenePointUnlockNotify);
|
||||
|
||||
ScenePointUnlockNotify.Builder p =
|
||||
ScenePointUnlockNotify.newBuilder()
|
||||
.setSceneId(sceneId)
|
||||
.addAllPointList(pointIds);
|
||||
ScenePointUnlockNotify.newBuilder().setSceneId(sceneId).addAllPointList(pointIds);
|
||||
|
||||
this.setData(p);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user