mirror of
https://github.com/RatzzFatzz/MKVAudioSubtitleChanger.git
synced 2026-02-11 02:05:56 +01:00
Improve general code quality
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user