Improve general code quality

This commit is contained in:
2022-04-24 16:47:55 +02:00
parent a99abd5989
commit 10954f07a4
14 changed files with 75 additions and 118 deletions

View File

@@ -1,5 +1,8 @@
package at.pcgamingfreaks.mkvaudiosubtitlechanger.model;
import lombok.AllArgsConstructor;
@AllArgsConstructor
public enum ConfigProperty {
CONFIG_PATH("config", "Path to config file"),
LIBRARY("library", "Path to library"),
@@ -15,11 +18,6 @@ public enum ConfigProperty {
private final String property;
private final String description;
ConfigProperty(String property, String description) {
this.property = property;
this.description = description;
}
public String desc() {
return description;
}