Skip to content

Commit 647f9e9

Browse files
committed
Adjust registry defaults
1 parent cd45248 commit 647f9e9

File tree

3 files changed

+81
-78
lines changed

3 files changed

+81
-78
lines changed

src/main/java/org/spongepowered/api/registry/RegistryTypes.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public final class RegistryTypes {
333333

334334
public static final DefaultedRegistryType<CommandRegistrarType<?>> COMMAND_REGISTRAR_TYPE = RegistryTypes.spongeKeyInGame("command_registrar_type");
335335

336-
public static final DefaultedRegistryType<CommandTreeNodeType<? extends @NonNull Object>> COMMAND_TREE_NODE_TYPE = RegistryTypes.spongeKeyInGame("command_tree_node_type");
336+
public static final DefaultedRegistryType<CommandTreeNodeType<? extends @NonNull Object>> COMMAND_TREE_NODE_TYPE = RegistryTypes.spongeKeyInServer("command_tree_node_type");
337337

338338
public static final DefaultedRegistryType<ComparatorMode> COMPARATOR_MODE = RegistryTypes.spongeKeyInGame("comparator_mode");
339339

@@ -373,7 +373,7 @@ public final class RegistryTypes {
373373

374374
public static final DefaultedRegistryType<FireworkShape> FIREWORK_SHAPE = RegistryTypes.spongeKeyInGame("firework_shape");
375375

376-
public static final DefaultedRegistryType<FlatGeneratorConfig> FLAT_GENERATOR_CONFIG = RegistryTypes.spongeKeyInGame("flat_generator_config");
376+
public static final DefaultedRegistryType<FlatGeneratorConfig> FLAT_GENERATOR_CONFIG = RegistryTypes.spongeKeyInServer("flat_generator_config");
377377

378378
public static final DefaultedRegistryType<FoxType> FOX_TYPE = RegistryTypes.spongeKeyInGame("fox_type");
379379

@@ -521,7 +521,7 @@ public final class RegistryTypes {
521521

522522
public static final DefaultedRegistryType<WolfVariant> WOLF_VAIRANT = RegistryTypes.minecraftKeyInServer("wolf_vairant");
523523

524-
public static final DefaultedRegistryType<WorldArchetypeType> WORLD_ARCHETYPE_TYPE = RegistryTypes.spongeKeyInGame("world_archetype_type");
524+
public static final DefaultedRegistryType<WorldArchetypeType> WORLD_ARCHETYPE_TYPE = RegistryTypes.minecraftKeyInServer("dimension");
525525

526526
public static final DefaultedRegistryType<WireAttachmentType> WIRE_ATTACHMENT_TYPE = RegistryTypes.spongeKeyInGame("wire_attachment_type");
527527

@@ -538,4 +538,8 @@ private static <V> DefaultedRegistryType<V> minecraftKeyInServer(final String ke
538538
private static <V> DefaultedRegistryType<V> spongeKeyInGame(final String key) {
539539
return RegistryType.of(RegistryRoots.SPONGE, ResourceKey.sponge(Objects.requireNonNull(key, "key"))).asDefaultedType(Sponge::game);
540540
}
541+
542+
private static <V> DefaultedRegistryType<V> spongeKeyInServer(final String key) {
543+
return RegistryType.of(RegistryRoots.SPONGE, ResourceKey.sponge(Objects.requireNonNull(key, "key"))).asDefaultedType(Sponge::server);
544+
}
541545
}

src/main/java/org/spongepowered/api/world/biome/Biomes.java

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -25,159 +25,159 @@
2525
package org.spongepowered.api.world.biome;
2626

2727
import org.spongepowered.api.ResourceKey;
28+
import org.spongepowered.api.Sponge;
29+
import org.spongepowered.api.registry.DefaultedRegistryReference;
2830
import org.spongepowered.api.registry.Registry;
2931
import org.spongepowered.api.registry.RegistryKey;
30-
import org.spongepowered.api.registry.RegistryReference;
3132
import org.spongepowered.api.registry.RegistryScope;
3233
import org.spongepowered.api.registry.RegistryScopes;
3334
import org.spongepowered.api.registry.RegistryTypes;
34-
import org.spongepowered.api.world.server.ServerWorld;
3535

3636
/**
3737
* <!-- This file is automatically generated. Any manual changes will be overwritten. -->
3838
*/
3939
@SuppressWarnings("unused")
40-
@RegistryScopes(scopes = RegistryScope.WORLD)
40+
@RegistryScopes(scopes = RegistryScope.ENGINE)
4141
public final class Biomes {
4242

43-
public static final RegistryReference<Biome> BADLANDS = Biomes.key(ResourceKey.minecraft("badlands"));
43+
public static final DefaultedRegistryReference<Biome> BADLANDS = Biomes.key(ResourceKey.minecraft("badlands"));
4444

45-
public static final RegistryReference<Biome> BAMBOO_JUNGLE = Biomes.key(ResourceKey.minecraft("bamboo_jungle"));
45+
public static final DefaultedRegistryReference<Biome> BAMBOO_JUNGLE = Biomes.key(ResourceKey.minecraft("bamboo_jungle"));
4646

47-
public static final RegistryReference<Biome> BASALT_DELTAS = Biomes.key(ResourceKey.minecraft("basalt_deltas"));
47+
public static final DefaultedRegistryReference<Biome> BASALT_DELTAS = Biomes.key(ResourceKey.minecraft("basalt_deltas"));
4848

49-
public static final RegistryReference<Biome> BEACH = Biomes.key(ResourceKey.minecraft("beach"));
49+
public static final DefaultedRegistryReference<Biome> BEACH = Biomes.key(ResourceKey.minecraft("beach"));
5050

51-
public static final RegistryReference<Biome> BIRCH_FOREST = Biomes.key(ResourceKey.minecraft("birch_forest"));
51+
public static final DefaultedRegistryReference<Biome> BIRCH_FOREST = Biomes.key(ResourceKey.minecraft("birch_forest"));
5252

53-
public static final RegistryReference<Biome> CHERRY_GROVE = Biomes.key(ResourceKey.minecraft("cherry_grove"));
53+
public static final DefaultedRegistryReference<Biome> CHERRY_GROVE = Biomes.key(ResourceKey.minecraft("cherry_grove"));
5454

55-
public static final RegistryReference<Biome> COLD_OCEAN = Biomes.key(ResourceKey.minecraft("cold_ocean"));
55+
public static final DefaultedRegistryReference<Biome> COLD_OCEAN = Biomes.key(ResourceKey.minecraft("cold_ocean"));
5656

57-
public static final RegistryReference<Biome> CRIMSON_FOREST = Biomes.key(ResourceKey.minecraft("crimson_forest"));
57+
public static final DefaultedRegistryReference<Biome> CRIMSON_FOREST = Biomes.key(ResourceKey.minecraft("crimson_forest"));
5858

59-
public static final RegistryReference<Biome> DARK_FOREST = Biomes.key(ResourceKey.minecraft("dark_forest"));
59+
public static final DefaultedRegistryReference<Biome> DARK_FOREST = Biomes.key(ResourceKey.minecraft("dark_forest"));
6060

61-
public static final RegistryReference<Biome> DEEP_COLD_OCEAN = Biomes.key(ResourceKey.minecraft("deep_cold_ocean"));
61+
public static final DefaultedRegistryReference<Biome> DEEP_COLD_OCEAN = Biomes.key(ResourceKey.minecraft("deep_cold_ocean"));
6262

63-
public static final RegistryReference<Biome> DEEP_DARK = Biomes.key(ResourceKey.minecraft("deep_dark"));
63+
public static final DefaultedRegistryReference<Biome> DEEP_DARK = Biomes.key(ResourceKey.minecraft("deep_dark"));
6464

65-
public static final RegistryReference<Biome> DEEP_FROZEN_OCEAN = Biomes.key(ResourceKey.minecraft("deep_frozen_ocean"));
65+
public static final DefaultedRegistryReference<Biome> DEEP_FROZEN_OCEAN = Biomes.key(ResourceKey.minecraft("deep_frozen_ocean"));
6666

67-
public static final RegistryReference<Biome> DEEP_LUKEWARM_OCEAN = Biomes.key(ResourceKey.minecraft("deep_lukewarm_ocean"));
67+
public static final DefaultedRegistryReference<Biome> DEEP_LUKEWARM_OCEAN = Biomes.key(ResourceKey.minecraft("deep_lukewarm_ocean"));
6868

69-
public static final RegistryReference<Biome> DEEP_OCEAN = Biomes.key(ResourceKey.minecraft("deep_ocean"));
69+
public static final DefaultedRegistryReference<Biome> DEEP_OCEAN = Biomes.key(ResourceKey.minecraft("deep_ocean"));
7070

71-
public static final RegistryReference<Biome> DESERT = Biomes.key(ResourceKey.minecraft("desert"));
71+
public static final DefaultedRegistryReference<Biome> DESERT = Biomes.key(ResourceKey.minecraft("desert"));
7272

73-
public static final RegistryReference<Biome> DRIPSTONE_CAVES = Biomes.key(ResourceKey.minecraft("dripstone_caves"));
73+
public static final DefaultedRegistryReference<Biome> DRIPSTONE_CAVES = Biomes.key(ResourceKey.minecraft("dripstone_caves"));
7474

75-
public static final RegistryReference<Biome> END_BARRENS = Biomes.key(ResourceKey.minecraft("end_barrens"));
75+
public static final DefaultedRegistryReference<Biome> END_BARRENS = Biomes.key(ResourceKey.minecraft("end_barrens"));
7676

77-
public static final RegistryReference<Biome> END_HIGHLANDS = Biomes.key(ResourceKey.minecraft("end_highlands"));
77+
public static final DefaultedRegistryReference<Biome> END_HIGHLANDS = Biomes.key(ResourceKey.minecraft("end_highlands"));
7878

79-
public static final RegistryReference<Biome> END_MIDLANDS = Biomes.key(ResourceKey.minecraft("end_midlands"));
79+
public static final DefaultedRegistryReference<Biome> END_MIDLANDS = Biomes.key(ResourceKey.minecraft("end_midlands"));
8080

81-
public static final RegistryReference<Biome> ERODED_BADLANDS = Biomes.key(ResourceKey.minecraft("eroded_badlands"));
81+
public static final DefaultedRegistryReference<Biome> ERODED_BADLANDS = Biomes.key(ResourceKey.minecraft("eroded_badlands"));
8282

83-
public static final RegistryReference<Biome> FLOWER_FOREST = Biomes.key(ResourceKey.minecraft("flower_forest"));
83+
public static final DefaultedRegistryReference<Biome> FLOWER_FOREST = Biomes.key(ResourceKey.minecraft("flower_forest"));
8484

85-
public static final RegistryReference<Biome> FOREST = Biomes.key(ResourceKey.minecraft("forest"));
85+
public static final DefaultedRegistryReference<Biome> FOREST = Biomes.key(ResourceKey.minecraft("forest"));
8686

87-
public static final RegistryReference<Biome> FROZEN_OCEAN = Biomes.key(ResourceKey.minecraft("frozen_ocean"));
87+
public static final DefaultedRegistryReference<Biome> FROZEN_OCEAN = Biomes.key(ResourceKey.minecraft("frozen_ocean"));
8888

89-
public static final RegistryReference<Biome> FROZEN_PEAKS = Biomes.key(ResourceKey.minecraft("frozen_peaks"));
89+
public static final DefaultedRegistryReference<Biome> FROZEN_PEAKS = Biomes.key(ResourceKey.minecraft("frozen_peaks"));
9090

91-
public static final RegistryReference<Biome> FROZEN_RIVER = Biomes.key(ResourceKey.minecraft("frozen_river"));
91+
public static final DefaultedRegistryReference<Biome> FROZEN_RIVER = Biomes.key(ResourceKey.minecraft("frozen_river"));
9292

93-
public static final RegistryReference<Biome> GROVE = Biomes.key(ResourceKey.minecraft("grove"));
93+
public static final DefaultedRegistryReference<Biome> GROVE = Biomes.key(ResourceKey.minecraft("grove"));
9494

95-
public static final RegistryReference<Biome> ICE_SPIKES = Biomes.key(ResourceKey.minecraft("ice_spikes"));
95+
public static final DefaultedRegistryReference<Biome> ICE_SPIKES = Biomes.key(ResourceKey.minecraft("ice_spikes"));
9696

97-
public static final RegistryReference<Biome> JAGGED_PEAKS = Biomes.key(ResourceKey.minecraft("jagged_peaks"));
97+
public static final DefaultedRegistryReference<Biome> JAGGED_PEAKS = Biomes.key(ResourceKey.minecraft("jagged_peaks"));
9898

99-
public static final RegistryReference<Biome> JUNGLE = Biomes.key(ResourceKey.minecraft("jungle"));
99+
public static final DefaultedRegistryReference<Biome> JUNGLE = Biomes.key(ResourceKey.minecraft("jungle"));
100100

101-
public static final RegistryReference<Biome> LUKEWARM_OCEAN = Biomes.key(ResourceKey.minecraft("lukewarm_ocean"));
101+
public static final DefaultedRegistryReference<Biome> LUKEWARM_OCEAN = Biomes.key(ResourceKey.minecraft("lukewarm_ocean"));
102102

103-
public static final RegistryReference<Biome> LUSH_CAVES = Biomes.key(ResourceKey.minecraft("lush_caves"));
103+
public static final DefaultedRegistryReference<Biome> LUSH_CAVES = Biomes.key(ResourceKey.minecraft("lush_caves"));
104104

105-
public static final RegistryReference<Biome> MANGROVE_SWAMP = Biomes.key(ResourceKey.minecraft("mangrove_swamp"));
105+
public static final DefaultedRegistryReference<Biome> MANGROVE_SWAMP = Biomes.key(ResourceKey.minecraft("mangrove_swamp"));
106106

107-
public static final RegistryReference<Biome> MEADOW = Biomes.key(ResourceKey.minecraft("meadow"));
107+
public static final DefaultedRegistryReference<Biome> MEADOW = Biomes.key(ResourceKey.minecraft("meadow"));
108108

109-
public static final RegistryReference<Biome> MUSHROOM_FIELDS = Biomes.key(ResourceKey.minecraft("mushroom_fields"));
109+
public static final DefaultedRegistryReference<Biome> MUSHROOM_FIELDS = Biomes.key(ResourceKey.minecraft("mushroom_fields"));
110110

111-
public static final RegistryReference<Biome> NETHER_WASTES = Biomes.key(ResourceKey.minecraft("nether_wastes"));
111+
public static final DefaultedRegistryReference<Biome> NETHER_WASTES = Biomes.key(ResourceKey.minecraft("nether_wastes"));
112112

113-
public static final RegistryReference<Biome> OCEAN = Biomes.key(ResourceKey.minecraft("ocean"));
113+
public static final DefaultedRegistryReference<Biome> OCEAN = Biomes.key(ResourceKey.minecraft("ocean"));
114114

115-
public static final RegistryReference<Biome> OLD_GROWTH_BIRCH_FOREST = Biomes.key(ResourceKey.minecraft("old_growth_birch_forest"));
115+
public static final DefaultedRegistryReference<Biome> OLD_GROWTH_BIRCH_FOREST = Biomes.key(ResourceKey.minecraft("old_growth_birch_forest"));
116116

117-
public static final RegistryReference<Biome> OLD_GROWTH_PINE_TAIGA = Biomes.key(ResourceKey.minecraft("old_growth_pine_taiga"));
117+
public static final DefaultedRegistryReference<Biome> OLD_GROWTH_PINE_TAIGA = Biomes.key(ResourceKey.minecraft("old_growth_pine_taiga"));
118118

119-
public static final RegistryReference<Biome> OLD_GROWTH_SPRUCE_TAIGA = Biomes.key(ResourceKey.minecraft("old_growth_spruce_taiga"));
119+
public static final DefaultedRegistryReference<Biome> OLD_GROWTH_SPRUCE_TAIGA = Biomes.key(ResourceKey.minecraft("old_growth_spruce_taiga"));
120120

121-
public static final RegistryReference<Biome> PALE_GARDEN = Biomes.key(ResourceKey.minecraft("pale_garden"));
121+
public static final DefaultedRegistryReference<Biome> PALE_GARDEN = Biomes.key(ResourceKey.minecraft("pale_garden"));
122122

123-
public static final RegistryReference<Biome> PLAINS = Biomes.key(ResourceKey.minecraft("plains"));
123+
public static final DefaultedRegistryReference<Biome> PLAINS = Biomes.key(ResourceKey.minecraft("plains"));
124124

125-
public static final RegistryReference<Biome> RIVER = Biomes.key(ResourceKey.minecraft("river"));
125+
public static final DefaultedRegistryReference<Biome> RIVER = Biomes.key(ResourceKey.minecraft("river"));
126126

127-
public static final RegistryReference<Biome> SAVANNA = Biomes.key(ResourceKey.minecraft("savanna"));
127+
public static final DefaultedRegistryReference<Biome> SAVANNA = Biomes.key(ResourceKey.minecraft("savanna"));
128128

129-
public static final RegistryReference<Biome> SAVANNA_PLATEAU = Biomes.key(ResourceKey.minecraft("savanna_plateau"));
129+
public static final DefaultedRegistryReference<Biome> SAVANNA_PLATEAU = Biomes.key(ResourceKey.minecraft("savanna_plateau"));
130130

131-
public static final RegistryReference<Biome> SMALL_END_ISLANDS = Biomes.key(ResourceKey.minecraft("small_end_islands"));
131+
public static final DefaultedRegistryReference<Biome> SMALL_END_ISLANDS = Biomes.key(ResourceKey.minecraft("small_end_islands"));
132132

133-
public static final RegistryReference<Biome> SNOWY_BEACH = Biomes.key(ResourceKey.minecraft("snowy_beach"));
133+
public static final DefaultedRegistryReference<Biome> SNOWY_BEACH = Biomes.key(ResourceKey.minecraft("snowy_beach"));
134134

135-
public static final RegistryReference<Biome> SNOWY_PLAINS = Biomes.key(ResourceKey.minecraft("snowy_plains"));
135+
public static final DefaultedRegistryReference<Biome> SNOWY_PLAINS = Biomes.key(ResourceKey.minecraft("snowy_plains"));
136136

137-
public static final RegistryReference<Biome> SNOWY_SLOPES = Biomes.key(ResourceKey.minecraft("snowy_slopes"));
137+
public static final DefaultedRegistryReference<Biome> SNOWY_SLOPES = Biomes.key(ResourceKey.minecraft("snowy_slopes"));
138138

139-
public static final RegistryReference<Biome> SNOWY_TAIGA = Biomes.key(ResourceKey.minecraft("snowy_taiga"));
139+
public static final DefaultedRegistryReference<Biome> SNOWY_TAIGA = Biomes.key(ResourceKey.minecraft("snowy_taiga"));
140140

141-
public static final RegistryReference<Biome> SOUL_SAND_VALLEY = Biomes.key(ResourceKey.minecraft("soul_sand_valley"));
141+
public static final DefaultedRegistryReference<Biome> SOUL_SAND_VALLEY = Biomes.key(ResourceKey.minecraft("soul_sand_valley"));
142142

143-
public static final RegistryReference<Biome> SPARSE_JUNGLE = Biomes.key(ResourceKey.minecraft("sparse_jungle"));
143+
public static final DefaultedRegistryReference<Biome> SPARSE_JUNGLE = Biomes.key(ResourceKey.minecraft("sparse_jungle"));
144144

145-
public static final RegistryReference<Biome> STONY_PEAKS = Biomes.key(ResourceKey.minecraft("stony_peaks"));
145+
public static final DefaultedRegistryReference<Biome> STONY_PEAKS = Biomes.key(ResourceKey.minecraft("stony_peaks"));
146146

147-
public static final RegistryReference<Biome> STONY_SHORE = Biomes.key(ResourceKey.minecraft("stony_shore"));
147+
public static final DefaultedRegistryReference<Biome> STONY_SHORE = Biomes.key(ResourceKey.minecraft("stony_shore"));
148148

149-
public static final RegistryReference<Biome> SUNFLOWER_PLAINS = Biomes.key(ResourceKey.minecraft("sunflower_plains"));
149+
public static final DefaultedRegistryReference<Biome> SUNFLOWER_PLAINS = Biomes.key(ResourceKey.minecraft("sunflower_plains"));
150150

151-
public static final RegistryReference<Biome> SWAMP = Biomes.key(ResourceKey.minecraft("swamp"));
151+
public static final DefaultedRegistryReference<Biome> SWAMP = Biomes.key(ResourceKey.minecraft("swamp"));
152152

153-
public static final RegistryReference<Biome> TAIGA = Biomes.key(ResourceKey.minecraft("taiga"));
153+
public static final DefaultedRegistryReference<Biome> TAIGA = Biomes.key(ResourceKey.minecraft("taiga"));
154154

155-
public static final RegistryReference<Biome> THE_END = Biomes.key(ResourceKey.minecraft("the_end"));
155+
public static final DefaultedRegistryReference<Biome> THE_END = Biomes.key(ResourceKey.minecraft("the_end"));
156156

157-
public static final RegistryReference<Biome> THE_VOID = Biomes.key(ResourceKey.minecraft("the_void"));
157+
public static final DefaultedRegistryReference<Biome> THE_VOID = Biomes.key(ResourceKey.minecraft("the_void"));
158158

159-
public static final RegistryReference<Biome> WARM_OCEAN = Biomes.key(ResourceKey.minecraft("warm_ocean"));
159+
public static final DefaultedRegistryReference<Biome> WARM_OCEAN = Biomes.key(ResourceKey.minecraft("warm_ocean"));
160160

161-
public static final RegistryReference<Biome> WARPED_FOREST = Biomes.key(ResourceKey.minecraft("warped_forest"));
161+
public static final DefaultedRegistryReference<Biome> WARPED_FOREST = Biomes.key(ResourceKey.minecraft("warped_forest"));
162162

163-
public static final RegistryReference<Biome> WINDSWEPT_FOREST = Biomes.key(ResourceKey.minecraft("windswept_forest"));
163+
public static final DefaultedRegistryReference<Biome> WINDSWEPT_FOREST = Biomes.key(ResourceKey.minecraft("windswept_forest"));
164164

165-
public static final RegistryReference<Biome> WINDSWEPT_GRAVELLY_HILLS = Biomes.key(ResourceKey.minecraft("windswept_gravelly_hills"));
165+
public static final DefaultedRegistryReference<Biome> WINDSWEPT_GRAVELLY_HILLS = Biomes.key(ResourceKey.minecraft("windswept_gravelly_hills"));
166166

167-
public static final RegistryReference<Biome> WINDSWEPT_HILLS = Biomes.key(ResourceKey.minecraft("windswept_hills"));
167+
public static final DefaultedRegistryReference<Biome> WINDSWEPT_HILLS = Biomes.key(ResourceKey.minecraft("windswept_hills"));
168168

169-
public static final RegistryReference<Biome> WINDSWEPT_SAVANNA = Biomes.key(ResourceKey.minecraft("windswept_savanna"));
169+
public static final DefaultedRegistryReference<Biome> WINDSWEPT_SAVANNA = Biomes.key(ResourceKey.minecraft("windswept_savanna"));
170170

171-
public static final RegistryReference<Biome> WOODED_BADLANDS = Biomes.key(ResourceKey.minecraft("wooded_badlands"));
171+
public static final DefaultedRegistryReference<Biome> WOODED_BADLANDS = Biomes.key(ResourceKey.minecraft("wooded_badlands"));
172172

173173
private Biomes() {
174174
}
175175

176-
public static Registry<Biome> registry(final ServerWorld world) {
177-
return world.registry(RegistryTypes.BIOME);
176+
public static Registry<Biome> registry() {
177+
return Sponge.server().registry(RegistryTypes.BIOME);
178178
}
179179

180-
private static RegistryReference<Biome> key(final ResourceKey location) {
181-
return RegistryKey.of(RegistryTypes.BIOME, location).asReference();
180+
private static DefaultedRegistryReference<Biome> key(final ResourceKey location) {
181+
return RegistryKey.of(RegistryTypes.BIOME, location).asDefaultedReference(Sponge::server);
182182
}
183183
}

src/main/java/org/spongepowered/api/world/server/WorldArchetypeTypes.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@
3737
* <!-- This file is automatically generated. Any manual changes will be overwritten. -->
3838
*/
3939
@SuppressWarnings("unused")
40-
@RegistryScopes(
41-
scopes = RegistryScope.ENGINE
42-
)
40+
@RegistryScopes(scopes = RegistryScope.ENGINE)
4341
public final class WorldArchetypeTypes {
42+
4443
private WorldArchetypeTypes() {
4544
}
4645

0 commit comments

Comments
 (0)