mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-13 03:44:13 +08:00
Run IntelliJ IDEA code formatter
This commit is contained in:
+7
-7
@@ -8,14 +8,14 @@ import java.util.Set;
|
||||
|
||||
public class PacketUnlockedFurnitureSuiteDataNotify extends BasePacket {
|
||||
|
||||
public PacketUnlockedFurnitureSuiteDataNotify(Set<Integer> unlockList) {
|
||||
super(PacketOpcodes.UnlockedFurnitureSuiteDataNotify);
|
||||
public PacketUnlockedFurnitureSuiteDataNotify(Set<Integer> unlockList) {
|
||||
super(PacketOpcodes.UnlockedFurnitureSuiteDataNotify);
|
||||
|
||||
var proto = UnlockedFurnitureSuiteDataNotifyOuterClass.UnlockedFurnitureSuiteDataNotify.newBuilder();
|
||||
var proto = UnlockedFurnitureSuiteDataNotifyOuterClass.UnlockedFurnitureSuiteDataNotify.newBuilder();
|
||||
|
||||
proto.addAllFurnitureSuiteIdList(unlockList);
|
||||
proto.setIsAll(true);
|
||||
proto.addAllFurnitureSuiteIdList(unlockList);
|
||||
proto.setIsAll(true);
|
||||
|
||||
this.setData(proto);
|
||||
}
|
||||
this.setData(proto);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user