Minor cleanups

This commit is contained in:
Erik C. Thauvin 2024-10-26 05:32:17 -07:00
parent 2fd73691c2
commit 11476127f0
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 3 additions and 1 deletions

View file

@ -26,6 +26,9 @@ public enum OutputFormat {
public final String label;
/**
* Sets the label of this output format.
*/
OutputFormat(String label) {
this.label = label;
}