Skip to content

Commit

Permalink
Deletes useless serialize parameter in DisplayFloatingPetSettings#ser…
Browse files Browse the repository at this point in the history
…ialize
  • Loading branch information
anjoismysign committed Jan 7, 2024
1 parent 0cf77cd commit 783b53b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ci-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.mytheria</groupId>
<artifactId>BlobLib</artifactId>
<version>1.697.56</version>
<version>1.697.57</version>
<relativePath>pom.xml</relativePath>
</parent>
<artifactId>bloblib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion local-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>us.mytheria</groupId>
<artifactId>BlobLib</artifactId>
<version>1.697.56</version>
<version>1.697.57</version>
<relativePath>pom.xml</relativePath>
</parent>
<artifactId>bloblib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>us.mytheria</groupId>
<artifactId>BlobLib</artifactId>
<version>1.697.56</version>
<version>1.697.57</version>
<packaging>pom</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,9 @@ public static DisplayFloatingPetSettings READ_OR_NULL(ConfigurationSection secti
* Will serialize to a ConfigurationSection.
*
* @param section The ConfigurationSection to serialize to.
* @param name The name of the ConfigurationSection to serialize to.
*/
public void serialize(ConfigurationSection section, String name) {
ConfigurationSection settings = section.createSection(name);
animationsCarrier.serialize(settings, "Animations");
displayMeasures.serialize(settings, "Measurements");
public void serialize(ConfigurationSection section) {
animationsCarrier.serialize(section.createSection("Animations"));
displayMeasures.serialize(section.createSection("Measurements"));
}
}

0 comments on commit 783b53b

Please sign in to comment.