Clan setLevel method should be private.

This commit is contained in:
MobiusDevelopment
2022-03-02 19:25:27 +00:00
parent bd36c2ecf3
commit b1f53f8d9a
46 changed files with 46 additions and 46 deletions

View File

@ -735,7 +735,7 @@ public class Clan implements IIdentifiable, INamable
* Sets the clan level and updates the clan forum if it's needed.
* @param level the clan level to be set.
*/
public void setLevel(int level)
private void setLevel(int level)
{
_level = level;
if ((_level >= 2) && (_forum == null) && Config.ENABLE_COMMUNITY_BOARD)