diff --git a/src/main/java/de/licenseapi/entities/License.java b/src/main/java/de/licenseapi/entities/License.java index af41ea3..d77b4bc 100644 --- a/src/main/java/de/licenseapi/entities/License.java +++ b/src/main/java/de/licenseapi/entities/License.java @@ -16,13 +16,14 @@ public class License { /** * Creates a new license object with the given parameters - * @param status The status of the license - * @param licenseKey The license key - * @param groups The groups of the license - * @param permissions The permissions of the license - * @param meta The meta information of the license - * @param maxUses The maximum amount of uses of the license - * @param currentUses The current amount of uses of the license + * + * @param status The status of the license + * @param licenseKey The license key + * @param groups The groups of the license + * @param permissions The permissions of the license + * @param meta The meta information of the license + * @param maxUses The maximum amount of uses of the license + * @param currentUses The current amount of uses of the license * @param expirationDate The expiration date of the license */ public License(LicenseStatus status, String licenseKey, ArrayList groups, ArrayList permissions, @@ -42,12 +43,12 @@ public class License { *

* The status can be one of the following: *

- * + * * * @return the status of the license */