Skip to content

Commit

Permalink
Update JavaDocs.
Browse files Browse the repository at this point in the history
  • Loading branch information
lewmilburn committed Sep 25, 2024
1 parent c003f36 commit 33d8725
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/main/java/net/lewmc/kryptonite/kos/config/Bukkit.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@
import java.io.File;
import java.io.IOException;

/**
* The Bukkit class manages the bukkit.yml configuration file.
*/
public class Bukkit {
private final Kryptonite plugin;
private final CommandSender user;

/**
* Constructor for the Bukkit class.
* @param plugin Kryptonite - Reference to the main plugin class.
* @param user CommandSender - The user who sent the command.
*/
public Bukkit(Kryptonite plugin, CommandSender user) {
this.plugin = plugin;
this.user = user;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import net.lewmc.kryptonite.utils.PropertiesUtil;

/**
* Manages the server.properties file.
* The ServerProperties class manages the server.properties configuration file.
*/
public class ServerProperties {
private final PropertiesUtil util;
Expand Down

0 comments on commit 33d8725

Please sign in to comment.