Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
2.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kangarko committed Aug 23, 2021
1 parent f1a0381 commit 7a433ed
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.mineacademy</groupId>
<artifactId>Confiscate</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ protected int getConfigVersion() {
return 1;
}

/**
* @see org.mineacademy.fo.settings.YamlConfig#saveComments()
*/
@Override
protected boolean saveComments() {
return false;
}

public static class Log {

private static HashMap<String /*path*/, String /*message*/> lazyMap = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ protected int getConfigVersion() {
return 5;
}

/**
* @see org.mineacademy.fo.settings.YamlConfig#saveComments()
*/
@Override
protected boolean saveComments() {
return false;
}

@Override
protected void beforeLoad() {
super.beforeLoad();
Expand Down

0 comments on commit 7a433ed

Please sign in to comment.